Add a script for installing apt-packages
This commit is contained in:
parent
c2405e47b4
commit
1b04fa46ab
2 changed files with 11 additions and 3 deletions
|
@ -53,9 +53,9 @@ flatpak install -y flathub com.github.wwmm.easyeffects
|
||||||
# Install equalizer
|
# Install equalizer
|
||||||
source "$popOSRoot/equalizer/install.sh"
|
source "$popOSRoot/equalizer/install.sh"
|
||||||
|
|
||||||
# Install Steam
|
|
||||||
sudo apt install -y steam
|
|
||||||
|
|
||||||
# Git config
|
# Git config
|
||||||
git config --global user.name "Manuel Thalmann"
|
git config --global user.name "Manuel Thalmann"
|
||||||
git config --global user.email "m@nuth.ch"
|
git config --global user.email "m@nuth.ch"
|
||||||
|
|
||||||
|
# Install General Packages from APT
|
||||||
|
source "$softwareRoot/apt-packages.sh"
|
||||||
|
|
8
scripts/PopOS/software/apt-packages.sh
Executable file
8
scripts/PopOS/software/apt-packages.sh
Executable 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
|
Loading…
Reference in a new issue