From 4410765a468052a04995ef329427fd95d3a13701 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Fri, 1 Jul 2022 11:58:54 -0400 Subject: [PATCH] height fixes --- larbs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/larbs.sh b/larbs.sh index eeec8da..e90ada4 100755 --- a/larbs.sh +++ b/larbs.sh @@ -138,14 +138,14 @@ gitmakeinstall() { aurinstall() { whiptail --title "LARBS Installation" \ - --infobox "Installing \`$1\` ($n of $total) from the AUR. $1 $2" 5 70 + --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" 5 70 + --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" }