This repository has been archived on 2022-03-25. You can view files and clone it, but cannot push or open issues or pull requests.
manjaroConfiguration/README.md
2021-11-14 21:24:22 +01:00

144 lines
5.2 KiB
Markdown

# Configuration perso pour Linux
Mon guide à suivre lors d'une réinstallation d'Ubuntu
### <u>Avant de réinstaller, sauvegarder les clés SSH</u>
## Script global pour Ubuntu et WSL
*Regarde en détail [le script pour Ubuntu et WSL](installGlobalScript.sh) pour connaître quels apps sont installées et quelle configuration est appliquée.*
```bash
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installGlobalScript.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
```
## Scripts pour chaque application
- [Installe Brave](https://brave.com/linux/#debian-9-ubuntu-1604-and-mint-18)
```bash
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installBrave.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
```
- Désinstalle Firefox
```bash
sudo snap remove firefox && rm -r $HOME/snap/firefox
```
- <details><summary>Installe et configure Fish ainsi que le SSH dans Fish</summary>
- Police (sous Windows CMD) : `Cascadia Mono`
- Couleur texte : `#D3D0C8 (211, 208, 200)`
- Couleur arrière-plan : `#2D2D2D (45, 45, 45)`
</details>
```bash
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installFish.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
```
- Installe VSCode
```bash
# Possible qu'il y est un problème de "keyrings", dans ce cas il faut
# se rendre dans `seahorse` et désactiver le mot de passe du keyring
# par défaut.
sudo snap install code --classic -y
```
- Remettre les clés SSH dans le dossier `$HOME/.ssh`
- Désactive le mot de passe SU si nécessaire
```bash
sudo sed -i "26s#.*#%sudo ALL=(ALL:ALL) NOPASSWD: ALL#" /etc/sudoers
```
- Installe Spotify et le patch
```bash
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installSpotify.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
```
- Installe [Syncthing](https://apt.syncthing.net/) et le [lance au démarrage](https://docs.syncthing.net/users/autostart.html#how-to-set-up-a-system-service)
```bash
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installSyncthing.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
```
- Installe [GL4Dummies](https://gl4d.api8.fr/FR/gl4d.pdf) *(temporaire)*
```bash
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installgl4D.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
```
- Installe Discord
```bash
wget -q --show-progress "https://discord.com/api/download?platform=linux&format=deb" -O discord.deb && sudo apt install ./discord.deb -y && rm discord.deb
```
- Installe Obsidian
```bash
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installObsidian.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
```
- Mettre en place le VPN
```bash
# En SSH au serveur, dans le dossier d'openvpn
docker-compose run --rm openvpn ovpn_getclient anri > anri.ovpn
```
- Installe Flameshot
```bash
sudo apt update && sudo apt install flameshot -y
```
- Installe Parsec
```bash
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installParsec.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
```
- Installe Latex
```bash
sudo apt update && sudo apt install texlive-full -y
```
- Installe Java (Adoptium 17.0.1)
```bash
# Utilises SDKMAN, gère Fish si installé
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installJava.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
```
- Installe OnlyOffice
```bash
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installOnlyOffice.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
```
- Installe le [sélecteur d'emojis](https://github.com/GaZaTu/x11-emoji-picker)
```bash
# Attention le script ne gère pas les raccourcis qui sont déjà assignés à "Super + ;"
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installEmojiPicker.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
```
- Rajoute les raccourcis clavier
```bash
# Attention le script ne gère pas les raccourcis qui sont déjà assignés à certaines touches
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/createKeyboardsShortcut.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
```
- [Retire la corbeille](https://ubuntuhandbook.org/index.php/2021/10/remove-trash-from-dock-ubuntu/) de la barre des tâches
```bash
gsettings set org.gnome.shell.extensions.dash-to-dock show-trash false
```
- Historique du presse-papier
```bash
# Lisez le fichier (ou les logs à l'exécution) car ce script nécessite des manipulations en plus
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installClipboardHistory.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
```
<details>
<summary>Mémo de commandes utiles peu de temps après une réinstallation/mise à jour</summary>
-
- Finalise l'installation de Rust avec rustup pour rustlings
```bash
set -Up fish_user_paths ~/.cargo/bin
```
-
- Désactive des éléments du "Bureau" dans Ubuntu
```bash
sudo mv /usr/share/applications/debian-xterm.desktop /usr/share/applications_backup/
```
</details>