Add a script for installing apt-packages

This commit is contained in:
Manuel Thalmann 2022-11-15 11:21:23 +01:00
parent e15b32ff1f
commit e5b9cf5dce
2 changed files with 11 additions and 3 deletions

View file

@ -53,9 +53,9 @@ flatpak install -y flathub com.github.wwmm.easyeffects
# Install equalizer
source "$popOSRoot/equalizer/install.sh"
# Install Steam
sudo apt install -y steam
# Git config
git config --global user.name "Manuel Thalmann"
git config --global user.email "m@nuth.ch"
# Install General Packages from APT
source "$softwareRoot/apt-packages.sh"

View file

@ -0,0 +1,8 @@
#!/bin/bash
# Elevate script
if [ ! "$UID" -eq 0 ]
then
sudo bash "$BASH_SOURCE"
else
apt install -y steam vim docker.io
fi