format
This commit is contained in:
parent
8a8170ab4e
commit
fef7e09635
5 changed files with 187 additions and 158 deletions
|
@ -7,8 +7,8 @@ user_pref("browser.tabs.loadBookmarksInBackground", true); // ne pas changer d'o
|
||||||
user_pref("browser.toolbars.bookmarks.visibility", "always"); // barre des marques pages affichés sur toutes les pages
|
user_pref("browser.toolbars.bookmarks.visibility", "always"); // barre des marques pages affichés sur toutes les pages
|
||||||
user_pref("browser.download.always_ask_before_handling_new_types", true); // demander s'il faut ouvrir ou enregistrer les fichiers
|
user_pref("browser.download.always_ask_before_handling_new_types", true); // demander s'il faut ouvrir ou enregistrer les fichiers
|
||||||
user_pref(
|
user_pref(
|
||||||
"browser.search.hiddenOneOffs",
|
"browser.search.hiddenOneOffs",
|
||||||
"Google,Amazon.fr,Bing,DuckDuckGo,eBay,Qwant,Wikipédia (fr)"
|
"Google,Amazon.fr,Bing,DuckDuckGo,eBay,Qwant,Wikipédia (fr)"
|
||||||
); // cacher les boutons navigateurs de la barre URL lors d'une recherche
|
); // cacher les boutons navigateurs de la barre URL lors d'une recherche
|
||||||
user_pref("browser.urlbar.placeholderName", "DuckDuckGo"); // moteur de recherche par défaut
|
user_pref("browser.urlbar.placeholderName", "DuckDuckGo"); // moteur de recherche par défaut
|
||||||
user_pref("browser.urlbar.placeholderName.private", "DuckDuckGo"); // moteur de recherche par défaut en navigation privée
|
user_pref("browser.urlbar.placeholderName.private", "DuckDuckGo"); // moteur de recherche par défaut en navigation privée
|
||||||
|
|
31
README.md
31
README.md
|
@ -1,76 +1,97 @@
|
||||||
# Configuration des OS
|
# Configuration des OS
|
||||||
|
|
||||||
> Pour rechercher efficacement, ^F "`===`" recherche catégorie par catégorie.
|
> Pour rechercher efficacement, ^F "`===`" recherche catégorie par catégorie.
|
||||||
|
|
||||||
## Windows 11
|
## Windows 11
|
||||||
|
|
||||||
- Télécharger [windows11.bat](./windows11.bat) qui est une installation guidée™
|
- Télécharger [windows11.bat](./windows11.bat) qui est une installation guidée™
|
||||||
pour installer Windows et le setup comme je l'aime.
|
pour installer Windows et le setup comme je l'aime.
|
||||||
|
|
||||||
## WSL (Arch)
|
## WSL (Arch)
|
||||||
|
|
||||||
Commande pour lancer mon installation :
|
Commande pour lancer mon installation :
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl https://git.kennel.ml/Anri/confOS/raw/branch/main/arch_wsl.sh -s | sudo bash
|
curl https://git.kennel.ml/Anri/confOS/raw/branch/main/arch_wsl.sh -s | sudo bash
|
||||||
```
|
```
|
||||||
|
|
||||||
## Arch
|
## Arch
|
||||||
|
|
||||||
<details><summary>Procédure ISO</summary>
|
<details><summary>Procédure ISO</summary>
|
||||||
|
|
||||||
> ### Layout FR
|
> ### Layout FR
|
||||||
|
>
|
||||||
> ```bash
|
> ```bash
|
||||||
> loadkeys fr
|
> loadkeys fr
|
||||||
> ```
|
> ```
|
||||||
|
>
|
||||||
> <details>
|
> <details>
|
||||||
> <summary>Connexion en WiFi</summary>
|
> <summary>Connexion en WiFi</summary>
|
||||||
>
|
>
|
||||||
> > ### Récupération clé hashée
|
> > ### Récupération clé hashée
|
||||||
|
> >
|
||||||
> > ```bash
|
> > ```bash
|
||||||
> > wpa_passhrase <SSID> <clé WIFI> > /var/lib/iwd/<SSID>.psk
|
> > wpa_passhrase <SSID> <clé WIFI> > /var/lib/iwd/<SSID>.psk
|
||||||
> > ```
|
> > ```
|
||||||
> >
|
> >
|
||||||
> > ### Ajout entête
|
> > ### Ajout entête
|
||||||
|
> >
|
||||||
> > ```bash
|
> > ```bash
|
||||||
> > echo -e "[Security]\nPreSharedKey=" >> /var/lib/iwd/<SSID>.psk
|
> > echo -e "[Security]\nPreSharedKey=" >> /var/lib/iwd/<SSID>.psk
|
||||||
> > ```
|
> > ```
|
||||||
> >
|
> >
|
||||||
> > ### Modification fichier pour ne garder que l'entête
|
> > ### Modification fichier pour ne garder que l'entête
|
||||||
|
> >
|
||||||
> > ```bash
|
> > ```bash
|
||||||
> > nano /var/lib/iwd/<SSID>.psk
|
> > nano /var/lib/iwd/<SSID>.psk
|
||||||
> > ```
|
> > ```
|
||||||
> >
|
> >
|
||||||
> > ### Connexion au WiFi
|
> > ### Connexion au WiFi
|
||||||
|
> >
|
||||||
> > ```bash
|
> > ```bash
|
||||||
> > iwctl station wlan0 connect <SSID>
|
> > iwctl station wlan0 connect <SSID>
|
||||||
> > ```
|
> > ```
|
||||||
|
>
|
||||||
> </details>
|
> </details>
|
||||||
>
|
>
|
||||||
> ### Copié la configuration
|
> ### Copié la configuration
|
||||||
|
>
|
||||||
> [`run.sh`](./archinstall/run.sh)
|
> [`run.sh`](./archinstall/run.sh)
|
||||||
|
>
|
||||||
> ```bash
|
> ```bash
|
||||||
> curl -o run.sh -L lstu.fr/m_ai_r
|
> curl -o run.sh -L lstu.fr/m_ai_r
|
||||||
> ```
|
> ```
|
||||||
>
|
>
|
||||||
> ### Lancé la configration
|
> ### Lancé la configration
|
||||||
|
>
|
||||||
> Rendre le script exécutable
|
> Rendre le script exécutable
|
||||||
|
>
|
||||||
> ```bash
|
> ```bash
|
||||||
> chmod +x run.sh
|
> chmod +x run.sh
|
||||||
> ```
|
> ```
|
||||||
>
|
>
|
||||||
> Lancer le script
|
> Lancer le script
|
||||||
|
>
|
||||||
> ```bash
|
> ```bash
|
||||||
> ./run.sh
|
> ./run.sh
|
||||||
> ```
|
> ```
|
||||||
>
|
>
|
||||||
> Ne pas aller dans le `chroot` à la fin de l'installation et redémarrer le pc
|
> Ne pas aller dans le `chroot` à la fin de l'installation et redémarrer le pc
|
||||||
|
>
|
||||||
> ```bash
|
> ```bash
|
||||||
> reboot
|
> reboot
|
||||||
> ```
|
> ```
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
Commande pour lancer mon installation :
|
Commande pour lancer mon installation :
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl https://git.kennel.ml/Anri/confOS/raw/branch/main/arch.sh -s | sudo bash
|
curl https://git.kennel.ml/Anri/confOS/raw/branch/main/arch.sh -s | sudo bash
|
||||||
```
|
```
|
||||||
|
|
||||||
## Android
|
## Android
|
||||||
|
|
||||||
Avec [UAD](https://github.com/0x192/universal-android-debloater), ma liste
|
Avec [UAD](https://github.com/0x192/universal-android-debloater), ma liste
|
||||||
d'applications est [uad_exported_selection.txt](./uad_exported_selection.txt).
|
d'applications est [uad_exported_selection.txt](./uad_exported_selection.txt).
|
||||||
|
|
||||||
|
@ -79,34 +100,42 @@ d'applications est [uad_exported_selection.txt](./uad_exported_selection.txt).
|
||||||
[Ici](https://git.kennel.ml/Anri/cat/wiki/Debloat-MIUI) un petit descriptif de
|
[Ici](https://git.kennel.ml/Anri/cat/wiki/Debloat-MIUI) un petit descriptif de
|
||||||
quelques applications que je désactive qui sont mauvaise.
|
quelques applications que je désactive qui sont mauvaise.
|
||||||
|
|
||||||
|
|
||||||
<details><summary><h2>Anciens scripts</h2></summary>
|
<details><summary><h2>Anciens scripts</h2></summary>
|
||||||
|
|
||||||
Ils restent là au cas où, mais attention ils ne sont **pas à jour**.
|
Ils restent là au cas où, mais attention ils ne sont **pas à jour**.
|
||||||
|
|
||||||
### Manjaro
|
### Manjaro
|
||||||
|
|
||||||
Commande pour lancer mon installation :
|
Commande pour lancer mon installation :
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl https://git.kennel.ml/Anri/confOS/raw/branch/main/old/manjaro.sh -s | bash
|
curl https://git.kennel.ml/Anri/confOS/raw/branch/main/old/manjaro.sh -s | bash
|
||||||
```
|
```
|
||||||
|
|
||||||
### Ubuntu
|
### Ubuntu
|
||||||
|
|
||||||
Commande pour lancer mon installation :
|
Commande pour lancer mon installation :
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl https://git.kennel.ml/Anri/confOS/raw/branch/main/old/ubuntu.sh -s | bash
|
curl https://git.kennel.ml/Anri/confOS/raw/branch/main/old/ubuntu.sh -s | bash
|
||||||
```
|
```
|
||||||
|
|
||||||
### WSL (Ubuntu)
|
### WSL (Ubuntu)
|
||||||
|
|
||||||
Commande pour lancer mon installation :
|
Commande pour lancer mon installation :
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Lors de l'installation il vous sera demandé de choisir
|
# Lors de l'installation il vous sera demandé de choisir
|
||||||
# une configuration mail, choisir : "No configuration"
|
# une configuration mail, choisir : "No configuration"
|
||||||
curl https://git.kennel.ml/Anri/confOS/raw/branch/main/old/ubuntu_wsl.sh -s | sudo bash
|
curl https://git.kennel.ml/Anri/confOS/raw/branch/main/old/ubuntu_wsl.sh -s | sudo bash
|
||||||
```
|
```
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
# Infos
|
# Infos
|
||||||
|
|
||||||
- Import/Export clef GPG :
|
- Import/Export clef GPG :
|
||||||
|
|
||||||
- Exporté clef publique : `gpg --output public.gpg --armor --export user@email`
|
- Exporté clef publique : `gpg --output public.gpg --armor --export user@email`
|
||||||
- Exporté clef privé : `gpg --output private.gpg --armor --export-secret-key user@email`
|
- Exporté clef privé : `gpg --output private.gpg --armor --export-secret-key user@email`
|
||||||
- Importé clefs publique : `gpg --import public.gpg`
|
- Importé clefs publique : `gpg --import public.gpg`
|
||||||
|
|
|
@ -1,126 +1,126 @@
|
||||||
{
|
{
|
||||||
"additional-repositories": [],
|
"additional-repositories": [],
|
||||||
"archinstall-language": "French",
|
"archinstall-language": "French",
|
||||||
"audio": "pipewire",
|
"audio": "pipewire",
|
||||||
"bootloader": "systemd-bootctl",
|
"bootloader": "systemd-bootctl",
|
||||||
"config_version": "2.5.0",
|
"config_version": "2.5.0",
|
||||||
"debug": false,
|
"debug": false,
|
||||||
"desktop-environment": "gnome",
|
"desktop-environment": "gnome",
|
||||||
"gfx_driver": "Intel (open-source)",
|
"gfx_driver": "Intel (open-source)",
|
||||||
"harddrives": ["/dev/nvme0n1"],
|
"harddrives": ["/dev/nvme0n1"],
|
||||||
"hostname": "laylow",
|
"hostname": "laylow",
|
||||||
"kernels": ["linux"],
|
"kernels": ["linux"],
|
||||||
"keyboard-layout": "fr-latin1",
|
"keyboard-layout": "fr-latin1",
|
||||||
"mirror-region": {
|
"mirror-region": {
|
||||||
"France": {
|
"France": {
|
||||||
"http://arch.yourlabs.org/$repo/os/$arch": true,
|
"http://arch.yourlabs.org/$repo/os/$arch": true,
|
||||||
"http://archlinux.datagr.am/$repo/os/$arch": true,
|
"http://archlinux.datagr.am/$repo/os/$arch": true,
|
||||||
"http://archlinux.mailtunnel.eu/$repo/os/$arch": true,
|
"http://archlinux.mailtunnel.eu/$repo/os/$arch": true,
|
||||||
"http://archlinux.mirrors.ovh.net/archlinux/$repo/os/$arch": true,
|
"http://archlinux.mirrors.ovh.net/archlinux/$repo/os/$arch": true,
|
||||||
"http://archlinux.polymorf.fr/$repo/os/$arch": true,
|
"http://archlinux.polymorf.fr/$repo/os/$arch": true,
|
||||||
"http://archlinux.rezopole.net/$repo/os/$arch": true,
|
"http://archlinux.rezopole.net/$repo/os/$arch": true,
|
||||||
"http://ftp.u-strasbg.fr/linux/distributions/archlinux/$repo/os/$arch": true,
|
"http://ftp.u-strasbg.fr/linux/distributions/archlinux/$repo/os/$arch": true,
|
||||||
"http://mir.archlinux.fr/$repo/os/$arch": true,
|
"http://mir.archlinux.fr/$repo/os/$arch": true,
|
||||||
"http://mirroir.labhouse.fr/arch/$repo/os/$arch": true,
|
"http://mirroir.labhouse.fr/arch/$repo/os/$arch": true,
|
||||||
"http://mirroir.wptheme.fr/archlinux/$repo/os/$arch": true,
|
"http://mirroir.wptheme.fr/archlinux/$repo/os/$arch": true,
|
||||||
"http://mirror.archlinux.ikoula.com/archlinux/$repo/os/$arch": true,
|
"http://mirror.archlinux.ikoula.com/archlinux/$repo/os/$arch": true,
|
||||||
"http://mirror.cyberbits.eu/archlinux/$repo/os/$arch": true,
|
"http://mirror.cyberbits.eu/archlinux/$repo/os/$arch": true,
|
||||||
"http://mirror.ibcp.fr/pub/archlinux/$repo/os/$arch": true,
|
"http://mirror.ibcp.fr/pub/archlinux/$repo/os/$arch": true,
|
||||||
"http://mirror.lastmikoi.net/archlinux/$repo/os/$arch": true,
|
"http://mirror.lastmikoi.net/archlinux/$repo/os/$arch": true,
|
||||||
"http://mirror.theo546.fr/archlinux/$repo/os/$arch": true,
|
"http://mirror.theo546.fr/archlinux/$repo/os/$arch": true,
|
||||||
"http://mirrors.celianvdb.fr/archlinux/$repo/os/$arch": true,
|
"http://mirrors.celianvdb.fr/archlinux/$repo/os/$arch": true,
|
||||||
"http://mirrors.gandi.net/archlinux/$repo/os/$arch": true,
|
"http://mirrors.gandi.net/archlinux/$repo/os/$arch": true,
|
||||||
"http://mirrors.standaloneinstaller.com/archlinux/$repo/os/$arch": true,
|
"http://mirrors.standaloneinstaller.com/archlinux/$repo/os/$arch": true,
|
||||||
"https://arch.juline.tech/$repo/os/$arch": true,
|
"https://arch.juline.tech/$repo/os/$arch": true,
|
||||||
"https://arch.yourlabs.org/$repo/os/$arch": true,
|
"https://arch.yourlabs.org/$repo/os/$arch": true,
|
||||||
"https://archlinux.mailtunnel.eu/$repo/os/$arch": true,
|
"https://archlinux.mailtunnel.eu/$repo/os/$arch": true,
|
||||||
"https://mirroir.labhouse.fr/arch/$repo/os/$arch": true,
|
"https://mirroir.labhouse.fr/arch/$repo/os/$arch": true,
|
||||||
"https://mirroir.wptheme.fr/archlinux/$repo/os/$arch": true,
|
"https://mirroir.wptheme.fr/archlinux/$repo/os/$arch": true,
|
||||||
"https://mirror.cyberbits.eu/archlinux/$repo/os/$arch": true,
|
"https://mirror.cyberbits.eu/archlinux/$repo/os/$arch": true,
|
||||||
"https://mirror.ibakerserver.pt/Arch/$repo/os/$arch": true,
|
"https://mirror.ibakerserver.pt/Arch/$repo/os/$arch": true,
|
||||||
"https://mirror.sysa.tech/archlinux/$repo/os/$arch": true,
|
"https://mirror.sysa.tech/archlinux/$repo/os/$arch": true,
|
||||||
"https://mirror.thekinrar.fr/archlinux/$repo/os/$arch": true,
|
"https://mirror.thekinrar.fr/archlinux/$repo/os/$arch": true,
|
||||||
"https://mirror.theo546.fr/archlinux/$repo/os/$arch": true,
|
"https://mirror.theo546.fr/archlinux/$repo/os/$arch": true,
|
||||||
"https://mirror.wormhole.eu/archlinux/$repo/os/$arch": true,
|
"https://mirror.wormhole.eu/archlinux/$repo/os/$arch": true,
|
||||||
"https://mirrors.celianvdb.fr/archlinux/$repo/os/$arch": true,
|
"https://mirrors.celianvdb.fr/archlinux/$repo/os/$arch": true,
|
||||||
"https://mirrors.eric.ovh/arch/$repo/os/$arch": true,
|
"https://mirrors.eric.ovh/arch/$repo/os/$arch": true,
|
||||||
"https://mirrors.gandi.net/archlinux/$repo/os/$arch": true,
|
"https://mirrors.gandi.net/archlinux/$repo/os/$arch": true,
|
||||||
"https://mirrors.slaanesh.org/archlinux/$repo/os/$arch": true
|
"https://mirrors.slaanesh.org/archlinux/$repo/os/$arch": true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mount_point": null,
|
"mount_point": null,
|
||||||
"nic": {
|
"nic": {
|
||||||
"dhcp": true,
|
"dhcp": true,
|
||||||
"dns": null,
|
"dns": null,
|
||||||
"gateway": null,
|
"gateway": null,
|
||||||
"iface": null,
|
"iface": null,
|
||||||
"ip": null,
|
"ip": null,
|
||||||
"type": "nm"
|
"type": "nm"
|
||||||
},
|
},
|
||||||
"ntp": true,
|
"ntp": true,
|
||||||
"packages": [
|
"packages": [
|
||||||
"bat",
|
"bat",
|
||||||
"xclip",
|
"xclip",
|
||||||
"base-devel",
|
"base-devel",
|
||||||
"make",
|
"make",
|
||||||
"python-pygments",
|
"python-pygments",
|
||||||
"signal-desktop",
|
"signal-desktop",
|
||||||
"drawing",
|
"drawing",
|
||||||
"micro",
|
"micro",
|
||||||
"git-lfs",
|
"git-lfs",
|
||||||
"npm",
|
"npm",
|
||||||
"sdl2_image",
|
"sdl2_image",
|
||||||
"flameshot",
|
"flameshot",
|
||||||
"firefox",
|
"firefox",
|
||||||
"libva-intel-driver",
|
"libva-intel-driver",
|
||||||
"tlp",
|
"tlp",
|
||||||
"nodejs",
|
"nodejs",
|
||||||
"fish",
|
"fish",
|
||||||
"autoconf",
|
"autoconf",
|
||||||
"valgrind",
|
"valgrind",
|
||||||
"copyq",
|
"copyq",
|
||||||
"automake",
|
"automake",
|
||||||
"python-virtualenv",
|
"python-virtualenv",
|
||||||
"noto-fonts-emoji",
|
"noto-fonts-emoji",
|
||||||
"gdb",
|
"gdb",
|
||||||
"tk",
|
"tk",
|
||||||
"sdl2_mixer",
|
"sdl2_mixer",
|
||||||
"xdg-desktop-portal-gnome",
|
"xdg-desktop-portal-gnome",
|
||||||
"exa",
|
"exa",
|
||||||
"texlive-most",
|
"texlive-most",
|
||||||
"syncthing",
|
"syncthing",
|
||||||
"ufw",
|
"ufw",
|
||||||
"fzf",
|
"fzf",
|
||||||
"glu",
|
"glu",
|
||||||
"noto-fonts-cjk",
|
"noto-fonts-cjk",
|
||||||
"networkmanager-openvpn",
|
"networkmanager-openvpn",
|
||||||
"man-pages-fr",
|
"man-pages-fr",
|
||||||
"s-tui",
|
"s-tui",
|
||||||
"uwufetch",
|
"uwufetch",
|
||||||
"docker",
|
"docker",
|
||||||
"docker-compose",
|
"docker-compose",
|
||||||
"python-pip",
|
"python-pip",
|
||||||
"bluez-utils",
|
"bluez-utils",
|
||||||
"vlc",
|
"vlc",
|
||||||
"discord",
|
"discord",
|
||||||
"opam",
|
"opam",
|
||||||
"pacman-contrib",
|
"pacman-contrib",
|
||||||
"cpanminus",
|
"cpanminus",
|
||||||
"gnome-text-editor",
|
"gnome-text-editor",
|
||||||
"rebuild-detector",
|
"rebuild-detector",
|
||||||
"git-delta",
|
"git-delta",
|
||||||
"sdl2_ttf",
|
"sdl2_ttf",
|
||||||
"rustup"
|
"rustup"
|
||||||
],
|
],
|
||||||
"plugin": null,
|
"plugin": null,
|
||||||
"profile": {
|
"profile": {
|
||||||
"path": "/usr/lib/python3.10/site-packages/archinstall/profiles/desktop.py"
|
"path": "/usr/lib/python3.10/site-packages/archinstall/profiles/desktop.py"
|
||||||
},
|
},
|
||||||
"script": "guided",
|
"script": "guided",
|
||||||
"silent": false,
|
"silent": false,
|
||||||
"swap": false,
|
"swap": false,
|
||||||
"sys-encoding": "UTF-8",
|
"sys-encoding": "UTF-8",
|
||||||
"sys-language": "fr_FR.UTF-8",
|
"sys-language": "fr_FR.UTF-8",
|
||||||
"timezone": "Europe/Paris",
|
"timezone": "Europe/Paris",
|
||||||
"version": "2.5.0"
|
"version": "2.5.0"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,30 +1,30 @@
|
||||||
{
|
{
|
||||||
"/dev/nvme0n1": {
|
"/dev/nvme0n1": {
|
||||||
"partitions": [
|
"partitions": [
|
||||||
{
|
{
|
||||||
"boot": true,
|
"boot": true,
|
||||||
"encrypted": false,
|
"encrypted": false,
|
||||||
"filesystem": {
|
"filesystem": {
|
||||||
"format": "fat32"
|
"format": "fat32"
|
||||||
},
|
},
|
||||||
"mountpoint": "/boot",
|
"mountpoint": "/boot",
|
||||||
"size": "512MiB",
|
"size": "512MiB",
|
||||||
"start": "1MiB",
|
"start": "1MiB",
|
||||||
"type": "primary",
|
"type": "primary",
|
||||||
"wipe": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"encrypted": false,
|
|
||||||
"filesystem": {
|
|
||||||
"format": "ext4"
|
|
||||||
},
|
|
||||||
"mountpoint": "/",
|
|
||||||
"size": "100%",
|
|
||||||
"start": "513MiB",
|
|
||||||
"type": "primary",
|
|
||||||
"wipe": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"wipe": true
|
"wipe": true
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
"encrypted": false,
|
||||||
|
"filesystem": {
|
||||||
|
"format": "ext4"
|
||||||
|
},
|
||||||
|
"mountpoint": "/",
|
||||||
|
"size": "100%",
|
||||||
|
"start": "513MiB",
|
||||||
|
"type": "primary",
|
||||||
|
"wipe": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"wipe": true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,11 +3,11 @@
|
||||||
body,
|
body,
|
||||||
input,
|
input,
|
||||||
textarea {
|
textarea {
|
||||||
font-family: "Fira Sans" !important;
|
font-family: "Fira Sans" !important;
|
||||||
--font-display: "Fira Sans";
|
--font-display: "Fira Sans";
|
||||||
--font-primary: "Fira Sans";
|
--font-primary: "Fira Sans";
|
||||||
}
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
font-family: "Fira Code" !important;
|
font-family: "Fira Code" !important;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue