From 56cdd11e3cccdace9eada47e85040e17d5030baf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petar=20Kapri=C5=A1?= Date: Wed, 23 Apr 2025 14:41:45 +0200 Subject: [PATCH] Make certain commands not-silent --- bs.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bs.sh b/bs.sh index c617dbd..5a66533 100644 --- a/bs.sh +++ b/bs.sh @@ -192,12 +192,12 @@ refreshkeys() { case "$(readlink -f /sbin/init)" in *systemd*) # May end up removing the Arch option whiptail --infobox "Refreshing Arch Keyring..." 7 40 - pacman --noconfirm -S archlinux-keyring >/dev/null 2>&1 + pacman --noconfirm -S archlinux-keyring ;; *) whiptail --infobox "Enabling Arch and Artix Omniverse Repositories for more a more extensive software collection..." 7 40 pacman --noconfirm --needed -S \ - artix-keyring artix-archlinux-support >/dev/null 2>&1 + artix-keyring artix-archlinux-support grep -q "^\[extra\]" /etc/pacman.conf || echo "[extra] Include = /etc/pacman.d/mirrorlist-arch" >>/etc/pacman.conf @@ -207,8 +207,8 @@ Include = /etc/pacman.d/mirrorlist-arch" >>/etc/pacman.conf Server = https://artix.sakamoto.pl/omniverse/$arch Server = https://eu-mirror.artixlinux.org/omniverse/$arch Server = https://omniverse.artixlinux.org/$arch" >>/etc/pacman.conf - pacman -Sy --noconfirm >/dev/null 2>&1 - pacman-key --populate archlinux >/dev/null 2>&1 + pacman -Sy --noconfirm + pacman-key --populate archlinux ;; esac }