Initialisation du projet, readme + script installation
This commit is contained in:
33
install.sh
Normal file
33
install.sh
Normal file
@ -0,0 +1,33 @@
|
||||
#!/bin/bash
|
||||
# Script pour automatiser la customatisation et l'installation d'un linux mint windows like
|
||||
|
||||
echo "Installation des dépendances"
|
||||
sudo apt update -y && sudo apt upgrade -y
|
||||
sudo apt install git gtk2-engines-murrine unzip p7zip-rar 7zip -y
|
||||
|
||||
echo "Installation du thème Windows 10"
|
||||
mkdir ~/.themes && mkdir ~/.icons
|
||||
sudo wget -O /usr/share/backgrounds/xfce/Windows-10.jpg https://1.bp.blogspot.com/-pEu0ToTAMyk/XWnlO2-h6nI/AAAAAAAAYb0/U7uz1_YHqls7nOf4N0s9rP96g7jaqlWZACLcBGAs/s2560/windows_10_4k_8k_2-2560x1440.jpg
|
||||
git clone https://github.com/B00merang-Artwork/Windows-10.git ~/.icons/windows
|
||||
gtk-update-icon-cache ~/.icons/windows
|
||||
git clone https://github.com/B00merang-Project/Windows-10.git ~/.themes/windows-light
|
||||
git clone https://github.com/B00merang-Project/Windows-10-Dark.git ~/.themes/windows-dark
|
||||
|
||||
# Mettre à jour le bureau et ses composants
|
||||
# Trouver le fichier de configuration de whisker, theme, icons, et disposition du bureau
|
||||
# https://i12bretro.github.io/tutorials/0530.html
|
||||
#
|
||||
echo "Installation des logiciels tierces"
|
||||
sudo apt install keepassxc
|
||||
|
||||
echo "Configuration de timeshift"
|
||||
sudo timeshift-gtk
|
||||
|
||||
echo "Configuration des paramètres"
|
||||
sudo tee -a /etc/fstab << EOF
|
||||
tmpfs /tmp tmpfs defaults,mode=1777,nosuid,size=4196M 0 0
|
||||
tmpfs /var/tmp tmpfs defaults,mode=1777,nosuid,size=4196M 0 0
|
||||
EOF
|
||||
|
||||
sudo bash -c 'echo "vm.swappiness=1" >> /etc/sysctl.conf'
|
||||
|
Reference in New Issue
Block a user