Update ...Plain...() functions

This commit is contained in:
Santiago Lo Coco 2022-01-19 18:24:23 -03:00
parent 108c8e34cd
commit 3f784c5d9d
1 changed files with 6 additions and 3 deletions

View File

@ -92,6 +92,7 @@ useWhiptail() {
}
usePlainText() {
clear
inputbox=false; infobox=false; passwordbox=false; yesno=false
for item in "$@"; do
case $item in
@ -110,13 +111,14 @@ usePlainText() {
read -r -s readVar
printf "$readVar" 1>&2
elif [ $yesno = true ]; then
printf "[y/n] "
read -n 1 -r readVar
printf '\n%s' "[y/n] "
read -n 1 -r -s readVar
return $([[ "$readVar" =~ ^[Yy]$ ]])
fi
}
usePlainTextMenu() {
clear
menuOptions=(); shift
printf "$1\n"
shift; shift
@ -125,7 +127,8 @@ usePlainTextMenu() {
printf '%s\n' "$i) $item"
((i++))
done
read -n 1 -r readVar
printf '\n%s' "[1..$((i-1))] "
read -n 1 -r -s readVar
printf "$readVar" 1>&2
}