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/installGlobalScript.sh
2021-11-25 20:29:49 +01:00

119 lines
3.9 KiB
Bash

if grep "Ubuntu" /proc/version > /dev/null || grep "WSL" /proc/version > /dev/null;
then
# Update of APT
sudo apt update
which git &> /dev/null || sudo apt install git -y # Install git if not already installed
git clone -c http.sslverify=false https://git.kennel.ml/Anri/myLinuxConfiguration.git
cd myLinuxConfiguration
# Upgrade and clean already installed packages
sudo apt upgrade -y
sudo apt autoremove -y
# Install Fish
bash installFish.sh
# Install gl4D
bash installgl4D.sh
# Install Latex
sudo apt install texlive-full -y
# Install Java
bash installJava.sh
# Install Python useful tools
sudo apt install python3-virtualenv python3-tk -y
# Install Rust
bash installRust.sh
if grep "Ubuntu" /proc/version > /dev/null;
then
# Install Brave
bash installBrave.sh
# Uninstall Firefox
sudo snap remove firefox && rm -r $HOME/snap/firefox
# Install VSCode
sudo snap install code --classic -y
# Install Spotify
bash installSpotify.sh
# Install Syncthing
bash installSyncthing.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 install flameshot -y
# Install Parsec
bash installParsec.sh
# Install Java
bash installJava.sh
# Install OnlyOffice
bash installOnlyoffice.sh
# Install EmojiPicker and its keyboard shortcut
wget -q --show-progress https://raw.githubusercontent.com/GaZaTu/x11-emoji-picker/master/install.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
# Setup some others keyboard shortcut
bash createKeyboardsShortcut.sh
# Install clipboard history
bash installClipboardHistory.sh
# Remove the Trash icon from the bar
gsettings set org.gnome.shell.extensions.dash-to-dock show-trash false
# Move the Menu Button to the top of the bar
gsettings set org.gnome.shell.extensions.dash-to-dock show-apps-at-top true
# Move the taskbar to the bottom
gsettings set org.gnome.shell.extensions.dash-to-dock dock-position BOTTOM
# info
echo ""
echo ""
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
# Create Z and Y mount folders for my WSL custom configuration
sudo mkdir /mnt/z && sudo mkdir /mnt/y
# Remove SU password because anyways if someone have access to your computer he will have access to windows
# And WSL isn't a daily drive OS who you store sensible things, comment this line if you wanna keep your SU pass
sudo sed -i "26s#.*#%sudo ALL=(ALL:ALL) NOPASSWD: ALL#" /etc/sudoers
# Change LTS update to normal
sudo sed -i "16s#.*#Prompt=normal#" /etc/update-manager/release-upgrades
# Remove snap for WSL because it block the 21.10 update (https://github.com/microsoft/WSL/issues/6942#issuecomment-879904997)
sudo apt autoremove --purge snapd -y
echo ""
echo ""
echo "Take care, by default the fish configuration is set for Ubuntu, you may need to uncomment"
echo "some of the lines in $HOME/.config/fish/config.fish to enable custom network disks from Windows."
echo ""
echo "You may need to update your distro to the latest version"
echo "Check this tutorial : https://git.kennel.ml/Anri/cat/wiki/Tuto-installation-WSL#%C3%A9tape-3-mise-%C3%A0-jour-de-ubuntu"
fi
# Supprime le repo
cd ..
rm -rf myLinuxConfiguration
else
echo "Your distribution isn't supported."
fi