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

117 lines
3.8 KiB
Bash
Raw Normal View History

2021-11-12 13:46:45 +01:00
if grep "Ubuntu" /proc/version > /dev/null || grep "WSL" /proc/version > /dev/null;
then
2021-11-14 15:41:04 +01:00
git clone -c http.sslverify=false https://git.kennel.ml/Anri/myLinuxConfiguration.git
2021-11-12 13:46:45 +01:00
cd myLinuxConfiguration
2021-11-12 15:55:49 +01:00
# Update of APT
sudo apt update
# Upgrade and clean already installed packages
sudo apt upgrade -y
sudo apt autoremove -y
2021-11-12 13:46:45 +01:00
# Install Fish
bash installFish.sh
2021-11-12 13:42:38 +01:00
2021-11-12 13:46:45 +01:00
# Install gl4D
bash installgl4D.sh
2021-11-12 13:42:38 +01:00
2021-11-12 13:46:45 +01:00
# Install Latex
2021-11-12 15:55:49 +01:00
sudo apt install texlive-full -y
2021-11-12 13:42:38 +01:00
2021-11-12 13:46:45 +01:00
# Install Java
bash installJava.sh
2021-11-12 13:42:38 +01:00
2021-11-14 22:05:14 +01:00
# Install Python useful tools
sudo apt install python3-virtualenv python3-tk -y
# Install Rust
bash installRust.sh
2021-11-12 13:46:45 +01:00
if grep "Ubuntu" /proc/version > /dev/null;
then
# Install Brave
bash installBrave.sh
2021-11-12 13:42:38 +01:00
2021-11-12 13:46:45 +01:00
# Uninstall Firefox
sudo snap remove firefox && rm -r $HOME/snap/firefox
2021-11-12 13:42:38 +01:00
2021-11-17 20:15:04 +01:00
# Install VSCode
sudo snap install code --classic -y
2021-11-12 13:46:45 +01:00
# Install Spotify
bash installSpotify.sh
2021-11-12 13:42:38 +01:00
2021-11-12 13:46:45 +01:00
# Install Syncthing
bash installSyncthing.sh
2021-11-12 13:42:38 +01:00
2021-11-12 13:46:45 +01:00
# 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
2021-11-12 13:42:38 +01:00
2021-11-12 13:46:45 +01:00
# Install Obsidian
bash installObsidian.sh
2021-11-12 13:42:38 +01:00
2021-11-12 13:46:45 +01:00
# Install Flameshot
2021-11-12 15:55:49 +01:00
sudo apt install flameshot -y
2021-11-12 13:42:38 +01:00
2021-11-12 13:46:45 +01:00
# Install Parsec
bash installParsec.sh
2021-11-12 13:42:38 +01:00
2021-11-12 13:46:45 +01:00
# Install Java
bash installJava.sh
2021-11-12 13:42:38 +01:00
2021-11-12 13:46:45 +01:00
# Install OnlyOffice
bash installOnlyoffice.sh
2021-11-12 13:42:38 +01:00
2021-11-12 13:46:45 +01:00
# 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
2021-11-12 13:50:14 +01:00
2021-11-12 15:41:38 +01:00
# Setup some others keyboard shortcut
bash createKeyboardsShortcut.sh
2021-11-12 15:55:49 +01:00
# Install clipboard history
bash installClipboardHistory.sh
2021-11-17 15:10:28 +01:00
# Remove the Trash icon from the bar
gsettings set org.gnome.shell.extensions.dash-to-dock show-trash false
2021-11-17 15:07:36 +01:00
# Move the Menu Button to the top of the bar
gsettings set org.gnome.shell.extensions.dash-to-dock show-apps-at-top true
2021-11-17 15:14:06 +01:00
# Move the taskbar to the bottom
gsettings set org.gnome.shell.extensions.dash-to-dock dock-position BOTTOM
2021-11-12 13:50:14 +01:00
# info
echo ""
echo ""
2021-11-12 15:55:49 +01:00
echo "Take care, you may need to install manually some others stuff, check the README (and the logs) of"
2021-11-12 13:50:14 +01:00
echo "the project => https://git.kennel.ml/Anri/myLinuxConfiguration/src/branch/main/README.md"
else # WSL
2021-11-14 15:48:14 +01:00
# Create Z and Y mount folders for my WSL custom configuration
sudo mkdir /mnt/z && sudo mkdir /mnt/y
2021-11-14 21:22:30 +01:00
# 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
2021-11-12 13:50:14 +01:00
echo ""
echo ""
2021-11-14 19:55:23 +01:00
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"
2021-11-12 13:46:45 +01:00
fi
2021-11-12 13:42:38 +01:00
2021-11-12 13:46:45 +01:00
# Supprime le repo
cd ..
rm -rf myLinuxConfiguration
else
echo "Your distribution isn't supported."
fi