diff --git a/scripts/common.sh b/scripts/common.sh index a94b819..8d42a7f 100644 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -51,7 +51,7 @@ useDialog() { } useWhiptail() { - str="${@: -1}"; inputbox=false + str="${@: -1}"; inputbox=false; infobox=false if [ "$str" = "VALUES" ]; then argc="$#"; i=1 for item in "$@"; do @@ -60,6 +60,7 @@ useWhiptail() { break fi [ "$item" = "--inputbox" ] && inputbox=true + [ "$item" = "--infobox" ] && infobox=true ((i++)) done fi @@ -68,6 +69,9 @@ useWhiptail() { if [ $inputbox = true ]; then width=$((${width}+15)) fi + if [ $infobox = true ]; then + height=$((height-1)) + fi formatOptions "$@" if [ $found = false ]; then height=0; width=0 diff --git a/scripts/install.sh b/scripts/install.sh index 9c8ee0d..07521c6 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -1,7 +1,7 @@ #!/bin/sh cloneAndMake() { - displayDialogBox --infobox "Downloading ${1}" + displayDialogBox --infobox "Downloading ${1}" VALUES git clone $2 > /dev/null 2>&1 cd $1; sudo make install > /dev/null 2>&1; cd .. }