Adding "global" scripts
This commit is contained in:
parent
77316e8fc6
commit
fd5f146a64
3 changed files with 68 additions and 0 deletions
12
README.md
12
README.md
|
@ -4,6 +4,18 @@ Mon guide à suivre lors d'une réinstallation d'Ubuntu
|
||||||
|
|
||||||
### <u>Avant de réinstaller, sauvegarder les clés SSH</u>
|
### <u>Avant de réinstaller, sauvegarder les clés SSH</u>
|
||||||
|
|
||||||
|
## Script global pour Ubuntu
|
||||||
|
```bash
|
||||||
|
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/Ubuntu.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
## Script global pour WSL
|
||||||
|
```bash
|
||||||
|
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/WSL.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)
|
- [Installe Brave](https://brave.com/linux/#debian-9-ubuntu-1604-and-mint-18)
|
||||||
```bash
|
```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
|
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installBrave.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
|
||||||
|
|
43
Ubuntu.sh
Normal file
43
Ubuntu.sh
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
git clone https://git.kennel.ml/Anri/myLinuxConfiguration.git
|
||||||
|
cd myLinuxConfiguration
|
||||||
|
# Install Brave
|
||||||
|
bash installBrave.sh
|
||||||
|
|
||||||
|
# Uninstall Firefox
|
||||||
|
sudo snap remove firefox && rm -r $HOME/snap/firefox
|
||||||
|
|
||||||
|
# Install Fish
|
||||||
|
bash installFish.sh
|
||||||
|
|
||||||
|
# Install Spotify
|
||||||
|
bash installSpotify.sh
|
||||||
|
|
||||||
|
# Install Syncthing
|
||||||
|
bash installSyncthing.sh
|
||||||
|
|
||||||
|
# Install gl4D
|
||||||
|
bash installgl4D.sh
|
||||||
|
|
||||||
|
# Install Discord
|
||||||
|
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
|
||||||
|
|
||||||
|
# Install Obsidian
|
||||||
|
bash installObsidian.sh
|
||||||
|
|
||||||
|
# Install Flameshot
|
||||||
|
sudo apt update && sudo apt install flameshot -y
|
||||||
|
|
||||||
|
# Install Parsec
|
||||||
|
bash installParsec.sh
|
||||||
|
|
||||||
|
# Install Latex
|
||||||
|
sudo apt update && sudo apt install texlive-full -y
|
||||||
|
|
||||||
|
# Install Java
|
||||||
|
bash installJava.sh
|
||||||
|
|
||||||
|
# Install OnlyOffice
|
||||||
|
bash installOnlyoffice.sh
|
||||||
|
|
||||||
|
# Install EmojiPicker and its keyboard shortcut
|
||||||
|
bash installEmojiPicker.sh
|
13
WSL.sh
Normal file
13
WSL.sh
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
git clone https://git.kennel.ml/Anri/myLinuxConfiguration.git
|
||||||
|
cd myLinuxConfiguration
|
||||||
|
# Install Fish
|
||||||
|
bash installFish.sh
|
||||||
|
|
||||||
|
# Install gl4D
|
||||||
|
bash installgl4D.sh
|
||||||
|
|
||||||
|
# Install Latex
|
||||||
|
sudo apt update && sudo apt install texlive-full -y
|
||||||
|
|
||||||
|
# Install Java
|
||||||
|
bash installJava.sh
|
Reference in a new issue