Adding clipboard history installer

This commit is contained in:
Mylloon 2021-11-12 15:55:49 +01:00
parent 66afae19dc
commit 29ce412485
3 changed files with 27 additions and 4 deletions

View file

@ -57,7 +57,7 @@ Mon guide à suivre lors d'une réinstallation d'Ubuntu
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installSyncthing.sh -O tmp.sh && bash tmp.sh; rm tmp.sh 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) - Installe [GL4Dummies](https://gl4d.api8.fr/FR/gl4d.pdf) *(temporaire)*
```bash ```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 wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installgl4D.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
``` ```
@ -95,6 +95,7 @@ Mon guide à suivre lors d'une réinstallation d'Ubuntu
- Installe Java (AdoptOpenJDK-16) - Installe Java (AdoptOpenJDK-16)
```bash ```bash
# A l'avenir pour mettre à jour Java, vous devrez re-lancez ce script (ne passe pas par un gestionnaire de paquet)
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installJava.sh -O tmp.sh && bash tmp.sh; rm tmp.sh wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installJava.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
``` ```
@ -105,11 +106,13 @@ Mon guide à suivre lors d'une réinstallation d'Ubuntu
- Installe le [sélecteur d'emojis](https://github.com/GaZaTu/x11-emoji-picker) - Installe le [sélecteur d'emojis](https://github.com/GaZaTu/x11-emoji-picker)
```bash ```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 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 - Rajoute les raccourcis clavier
```bash ```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 wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/createKeyboardsShortcut.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
``` ```
@ -118,6 +121,12 @@ Mon guide à suivre lors d'une réinstallation d'Ubuntu
gsettings set org.gnome.shell.extensions.dash-to-dock show-trash false 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> <details>
<summary>Mémo de commandes utiles peu de temps après une réinstallation/mise à jour</summary> <summary>Mémo de commandes utiles peu de temps après une réinstallation/mise à jour</summary>

View file

@ -0,0 +1,8 @@
sudo apt update
sudo apt install gnome-shell-extension-gpaste gnome-shell-extension-prefs -y
echo ""
echo "Clipboard history is now available"
echo "You may need to enable hit trought the extension manager..."
echo "You can access it by starting \"Extensions\" app and enabling \"GPaste\""
echo "Anyway, it is accessible by starting \"GPaste\""

View file

@ -2,6 +2,9 @@ if grep "Ubuntu" /proc/version > /dev/null || grep "WSL" /proc/version > /dev/nu
then then
git clone https://git.kennel.ml/Anri/myLinuxConfiguration.git git clone https://git.kennel.ml/Anri/myLinuxConfiguration.git
cd myLinuxConfiguration cd myLinuxConfiguration
# Update of APT
sudo apt update
# Install Fish # Install Fish
bash installFish.sh bash installFish.sh
@ -9,7 +12,7 @@ then
bash installgl4D.sh bash installgl4D.sh
# Install Latex # Install Latex
sudo apt update && sudo apt install texlive-full -y sudo apt install texlive-full -y
# Install Java # Install Java
bash installJava.sh bash installJava.sh
@ -35,7 +38,7 @@ then
bash installObsidian.sh bash installObsidian.sh
# Install Flameshot # Install Flameshot
sudo apt update && sudo apt install flameshot -y sudo apt install flameshot -y
# Install Parsec # Install Parsec
bash installParsec.sh bash installParsec.sh
@ -52,10 +55,13 @@ then
# Setup some others keyboard shortcut # Setup some others keyboard shortcut
bash createKeyboardsShortcut.sh bash createKeyboardsShortcut.sh
# Install clipboard history
bash installClipboardHistory.sh
# info # info
echo "" echo ""
echo "" echo ""
echo "Take care, you may need to install manually some others stuff, check the README of" echo "Take care, you may need to install manually some others stuff, check the README (and the logs) of"
echo "the project => https://git.kennel.ml/Anri/myLinuxConfiguration/src/branch/main/README.md" echo "the project => https://git.kennel.ml/Anri/myLinuxConfiguration/src/branch/main/README.md"
else # WSL else # WSL
echo "" echo ""