From 491b3549710da17221ad8ae1cbd7eb5a112a369d Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sun, 13 Nov 2022 01:00:23 +0100 Subject: [PATCH] Disable all prompts --- ManuSurface/setup.sh | 16 ++++++++-------- scripts/PopOS/linux-surface.sh | 2 +- scripts/PopOS/software/code.sh | 2 +- scripts/PopOS/software/python.sh | 4 ++-- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/ManuSurface/setup.sh b/ManuSurface/setup.sh index 423aba35..691aec9a 100644 --- a/ManuSurface/setup.sh +++ b/ManuSurface/setup.sh @@ -9,7 +9,7 @@ sudo hostnamectl set-hostname ManuSurface # Preparation sudo apt update -sudo apt upgrade +sudo apt upgrade -y # Install gnome extensions source "$softwareRoot/gnome-extensions.sh" @@ -39,15 +39,15 @@ source "$softwareRoot/code.sh" source "$softwareRoot/tea.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 -flatpak install flathub com.mattjakeman.ExtensionManager -flatpak install flathub com.github.wwmm.easyeffects +flatpak install -y flathub com.bitwarden.desktop +flatpak install -y flathub com.github.xournalpp.xournalpp +flatpak install -y flathub org.signal.Signal +flatpak install -y flathub com.usebottles.bottles +flatpak install -y flathub com.mattjakeman.ExtensionManager +flatpak install -y flathub com.github.wwmm.easyeffects # Install equalizer source "$popOSRoot/equalizer/install.sh" # Install Steam -sudo apt install steam +sudo apt install -y steam diff --git a/scripts/PopOS/linux-surface.sh b/scripts/PopOS/linux-surface.sh index 70bbdfb0..dcd692aa 100644 --- a/scripts/PopOS/linux-surface.sh +++ b/scripts/PopOS/linux-surface.sh @@ -12,7 +12,7 @@ echo "deb [arch=amd64] https://pkg.surfacelinux.com/debian release main" \ | sudo tee /etc/apt/sources.list.d/linux-surface.list apt update -apt install linux-image-surface linux-headers-surface iptsd libwacom-surface + apt install -y linux-image-surface linux-headers-surface iptsd libwacom-surface systemctl enable iptsd # Install DTX diff --git a/scripts/PopOS/software/code.sh b/scripts/PopOS/software/code.sh index c9f980f2..ee6db483 100644 --- a/scripts/PopOS/software/code.sh +++ b/scripts/PopOS/software/code.sh @@ -5,7 +5,7 @@ then exec sudo bash "$0" fi -apt-get install wget gpg +apt-get install -y wget gpg keyFile=$(mktemp) wget -qO- https://packages.microsoft.com/keys/microsoft.asc \ diff --git a/scripts/PopOS/software/python.sh b/scripts/PopOS/software/python.sh index d7604bc5..c74f7a93 100644 --- a/scripts/PopOS/software/python.sh +++ b/scripts/PopOS/software/python.sh @@ -5,5 +5,5 @@ then exec sudo bash "$0" fi -apt install python3 python-is-python3 python3-pip -pip install pipenv +apt install -y python3 python-is-python3 python3-pip +pip install pipenv \ No newline at end of file