diff --git a/larbs.sh b/larbs.sh index 49b280c..1807dda 100644 --- a/larbs.sh +++ b/larbs.sh @@ -178,7 +178,7 @@ manualinstall() { # Installs $1 manually. Used only for AUR helper here. # Should be run after repodir is created and var is set. pacman -Qq "$1" && return 0 - whiptail --infobox "Installing \"$1\" manually." 7 50 + # whiptail --infobox "Installing \"$1\" manually." 7 50 sudo -u "$name" mkdir -p "$repodir/$1" sudo -u "$name" git -C "$repodir" clone --depth 1 --single-branch \ --no-tags -q "https://aur.archlinux.org/$1.git" "$repodir/$1" || @@ -193,7 +193,7 @@ manualinstall() { maininstall() { # Installs all needed programs from main repo. - whiptail --title "LARBS Installation" --infobox "Installing \`$1\` ($n of $total). $1 $2" 9 70 + # whiptail --title "LARBS Installation" --infobox "Installing \`$1\` ($n of $total). $1 $2" 9 70 installpkg "$1" } @@ -201,8 +201,8 @@ gitmakeinstall() { progname="${1##*/}" progname="${progname%.git}" dir="$repodir/$progname" - whiptail --title "LARBS Installation" \ - --infobox "Installing \`$progname\` ($n of $total) via \`git\` and \`make\`. $(basename "$1") $2" 8 70 + # whiptail --title "LARBS Installation" \ + # --infobox "Installing \`$progname\` ($n of $total) via \`git\` and \`make\`. $(basename "$1") $2" 8 70 sudo -u "$name" git -C "$repodir" clone --depth 1 --single-branch \ --no-tags -q "$1" "$dir" || { @@ -216,15 +216,15 @@ gitmakeinstall() { } aurinstall() { - whiptail --title "LARBS Installation" \ - --infobox "Installing \`$1\` ($n of $total) from the AUR. $1 $2" 9 70 + # whiptail --title "LARBS Installation" \ + # --infobox "Installing \`$1\` ($n of $total) from the AUR. $1 $2" 9 70 echo "$aurinstalled" | grep -q "^$1$" && return 1 sudo -u "$name" $aurhelper -S --noconfirm "$1" >/dev/null 2>&1 } pipinstall() { - whiptail --title "LARBS Installation" \ - --infobox "Installing the Python package \`$1\` ($n of $total). $1 $2" 9 70 + # whiptail --title "LARBS Installation" \ + # --infobox "Installing the Python package \`$1\` ($n of $total). $1 $2" 9 70 [ -x "$(command -v "pip")" ] || installpkg python-pip >/dev/null 2>&1 yes | pip install "$1" } @@ -279,8 +279,8 @@ refreshkeys || error "Error automatically refreshing Arch keyring. Consider doing so manually." for x in curl ca-certificates base-devel git ntp zsh dash; do - whiptail --title "LARBS Installation" \ - --infobox "Installing \`$x\` which is required to install and configure other programs." 8 70 + # whiptail --title "LARBS Installation" \ + # --infobox "Installing \`$x\` which is required to install and configure other programs." 8 70 installpkg "$x" done