Add a global installer script
This commit is contained in:
parent
caf62dd6f0
commit
b6488abed8
1 changed files with 28 additions and 0 deletions
28
ManuSurface/setup.sh
Normal file
28
ManuSurface/setup.sh
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
#!/bin/bash
|
||||||
|
dir="${BASH_SOURCE%/*}"
|
||||||
|
|
||||||
|
# Set Hostname
|
||||||
|
sudo hostnamectl set-hostname ManuSurface
|
||||||
|
|
||||||
|
# Preparation
|
||||||
|
sudo apt update
|
||||||
|
sudo apt upgrade
|
||||||
|
|
||||||
|
# Install Brave
|
||||||
|
source "$dir/../scripts/PopOS/softwate/brave.sh"
|
||||||
|
source "$dir/../scripts/PopOS/software/brave-extensions.sh"
|
||||||
|
source "$dir/../scripts/PopOS/softwate/brave-beta.sh"
|
||||||
|
source "$dir/../scripts/PopOS/softwate/brave-nightly.sh"
|
||||||
|
|
||||||
|
# Install further software
|
||||||
|
source "$dir/../scripts/PopOS/softwate/codium.sh"
|
||||||
|
source "$dir/../scripts/PopOS/softwate/code.sh"
|
||||||
|
|
||||||
|
# Install other flatpaks
|
||||||
|
flatpak install flathub com.bitwarden.desktop
|
||||||
|
flatpak install flathub com.github.xournalpp.xournalpp
|
||||||
|
flatpak install flathub org.signal.Signal
|
||||||
|
flatpak install flathub com.usebottles.bottles
|
||||||
|
|
||||||
|
# Install Steam
|
||||||
|
sudo apt install steam
|
Loading…
Reference in a new issue