Update ...Plain...() functions
This commit is contained in:
parent
108c8e34cd
commit
3f784c5d9d
|
@ -92,6 +92,7 @@ useWhiptail() {
|
||||||
}
|
}
|
||||||
|
|
||||||
usePlainText() {
|
usePlainText() {
|
||||||
|
clear
|
||||||
inputbox=false; infobox=false; passwordbox=false; yesno=false
|
inputbox=false; infobox=false; passwordbox=false; yesno=false
|
||||||
for item in "$@"; do
|
for item in "$@"; do
|
||||||
case $item in
|
case $item in
|
||||||
|
@ -110,13 +111,14 @@ usePlainText() {
|
||||||
read -r -s readVar
|
read -r -s readVar
|
||||||
printf "$readVar" 1>&2
|
printf "$readVar" 1>&2
|
||||||
elif [ $yesno = true ]; then
|
elif [ $yesno = true ]; then
|
||||||
printf "[y/n] "
|
printf '\n%s' "[y/n] "
|
||||||
read -n 1 -r readVar
|
read -n 1 -r -s readVar
|
||||||
return $([[ "$readVar" =~ ^[Yy]$ ]])
|
return $([[ "$readVar" =~ ^[Yy]$ ]])
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
usePlainTextMenu() {
|
usePlainTextMenu() {
|
||||||
|
clear
|
||||||
menuOptions=(); shift
|
menuOptions=(); shift
|
||||||
printf "$1\n"
|
printf "$1\n"
|
||||||
shift; shift
|
shift; shift
|
||||||
|
@ -125,7 +127,8 @@ usePlainTextMenu() {
|
||||||
printf '%s\n' "$i) $item"
|
printf '%s\n' "$i) $item"
|
||||||
((i++))
|
((i++))
|
||||||
done
|
done
|
||||||
read -n 1 -r readVar
|
printf '\n%s' "[1..$((i-1))] "
|
||||||
|
read -n 1 -r -s readVar
|
||||||
printf "$readVar" 1>&2
|
printf "$readVar" 1>&2
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue