Simple script collection to make my linux installs more automated.
Not much since I'm bad at this but it may interest you.
Disclaimer: I am NOT responsible for any problems that the script can cause (like uninstall a vital package because of a bug), read the script and run it at your leisure.
Updates repositories
Upgrades packages
Installs
Google Chrome, Firefox, Discord, Steam, VLC, Flameshot, neofetch, htop, wine and Lutris when possibleDue to Manifest V3, Chromium based browsers will be excluded from the script
Ubuntu/Debian: sudo apt update && sudo apt install -y git (flag -y(es) means it will automatically confirm the command)
Fedora/CentOS: sudo dnf install git -y (flag -y(es) means it will automatically confirm the command)
Arch Linux: sudo pacman -Syy --noconfirm && sudo pacman -S --noconfirm git (flag --noconfirm means that it won't ask yes/no)
openSUSE: sudo zypper up -y && sudo zypper in -y git (flag -y(es) means it will automatically confirm the command)
Clear Linux: sudo swupd bundle-add git
Void Linux: sudo xbps-install -Suy && sudo xbps-install -y git (flag -y(es) means it will automatically confirm the command)
git clone https://github.com/An12854/easy-linux-script.git
cd easy-linux-script/
chmod +x script-install-(repository).sh
./script-install-(repository).sh
And that's it! If anything fails send an issue.