Adding clipboard history installer
This commit is contained in:
parent
66afae19dc
commit
29ce412485
3 changed files with 27 additions and 4 deletions
11
README.md
11
README.md
|
@ -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
|
||||
```
|
||||
|
||||
- Installe [GL4Dummies](https://gl4d.api8.fr/FR/gl4d.pdf)
|
||||
- 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
|
||||
```
|
||||
|
@ -95,6 +95,7 @@ Mon guide à suivre lors d'une réinstallation d'Ubuntu
|
|||
|
||||
- Installe Java (AdoptOpenJDK-16)
|
||||
```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
|
||||
```
|
||||
|
||||
|
@ -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)
|
||||
```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
|
||||
```
|
||||
|
||||
|
@ -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
|
||||
```
|
||||
|
||||
- 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>
|
||||
|
||||
|
|
8
installClipboardHistory.sh
Normal file
8
installClipboardHistory.sh
Normal 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\""
|
|
@ -2,6 +2,9 @@ if grep "Ubuntu" /proc/version > /dev/null || grep "WSL" /proc/version > /dev/nu
|
|||
then
|
||||
git clone https://git.kennel.ml/Anri/myLinuxConfiguration.git
|
||||
cd myLinuxConfiguration
|
||||
# Update of APT
|
||||
sudo apt update
|
||||
|
||||
# Install Fish
|
||||
bash installFish.sh
|
||||
|
||||
|
@ -9,7 +12,7 @@ then
|
|||
bash installgl4D.sh
|
||||
|
||||
# Install Latex
|
||||
sudo apt update && sudo apt install texlive-full -y
|
||||
sudo apt install texlive-full -y
|
||||
|
||||
# Install Java
|
||||
bash installJava.sh
|
||||
|
@ -35,7 +38,7 @@ then
|
|||
bash installObsidian.sh
|
||||
|
||||
# Install Flameshot
|
||||
sudo apt update && sudo apt install flameshot -y
|
||||
sudo apt install flameshot -y
|
||||
|
||||
# Install Parsec
|
||||
bash installParsec.sh
|
||||
|
@ -52,10 +55,13 @@ then
|
|||
# Setup some others keyboard shortcut
|
||||
bash createKeyboardsShortcut.sh
|
||||
|
||||
# Install clipboard history
|
||||
bash installClipboardHistory.sh
|
||||
|
||||
# info
|
||||
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"
|
||||
else # WSL
|
||||
echo ""
|
||||
|
|
Reference in a new issue