Added a few apps + uninstall

This commit is contained in:
2024-06-17 01:49:52 +02:00
parent 3b97ae4f33
commit a408c841f4
11 changed files with 27 additions and 0 deletions

3
install/app-fastfetch.sh Normal file
View File

@@ -0,0 +1,3 @@
sudo add-apt-repository -y ppa:zhangsongcui3371/fastfetch
sudo apt update -y
sudo apt install -y fastfetch

6
install/app-steam.sh Executable file
View File

@@ -0,0 +1,6 @@
cd /tmp
wget https://cdn.akamai.steamstatic.com/client/installer/steam.deb
sudo apt install -y ./steam.deb
sudo apt-get install --no-remove -oAPT::Get::AutomaticRemove=false libc6:amd64 libc6:i386 libegl1:amd64 libegl1:i386 libgbm1:amd64 libgbm1:i386 libgl1-mesa-dri:amd64 libgl1-mesa-dri:i386 libgl1:amd64 libgl1:i386 steam-libs-amd64:amd64
rm steam.deb
cd -

3
install/flatpak.sh Normal file
View File

@@ -0,0 +1,3 @@
sudo apt install -y flatpak
sudo apt install -y gnome-software-plugin-flatpak
sudo flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo

6
install/set-git.sh Normal file
View File

@@ -0,0 +1,6 @@
# Set common git aliases
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status
git config --global pull.rebase true