From a004a35dba7fbdc22b137e2dd0dba749e36ec96b Mon Sep 17 00:00:00 2001 From: Lucie Scarlet Date: Sat, 17 Aug 2024 18:08:12 +0200 Subject: [PATCH] Added `set -euxo pipefail` and combined the pacman commands Since you can install using `pacman -Syu` it doesn't make sense to run that first, then running `pacman -S` afterwards. Also, it didn't do `--noconfirm` so if there were something to update, it would fail the install. --- i3/install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/i3/install.sh b/i3/install.sh index 7deacb0..bd14c6b 100755 --- a/i3/install.sh +++ b/i3/install.sh @@ -27,6 +27,7 @@ echo "Installing Nitrogen and Variety" if [[ -x /bin/apt ]]; then sudo -s <