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

92 lines
2.7 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-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-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
bash installEmojiPicker.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-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
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 "The SU has also kept his password."
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