Use bold text in ...plainText...()
This commit is contained in:
parent
af612d8ee3
commit
0ea7ce1783
|
@ -104,7 +104,9 @@ usePlainText() {
|
||||||
--yesno) yesno=true ;;
|
--yesno) yesno=true ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
tput bold
|
||||||
printf "${2:2}\n"
|
printf "${2:2}\n"
|
||||||
|
tput sgr0
|
||||||
if [ $inputbox = true ]; then
|
if [ $inputbox = true ]; then
|
||||||
printLine && printf "\n"
|
printLine && printf "\n"
|
||||||
read -r readVar
|
read -r readVar
|
||||||
|
@ -133,7 +135,9 @@ usePlainText() {
|
||||||
|
|
||||||
usePlainTextMenu() {
|
usePlainTextMenu() {
|
||||||
clear
|
clear
|
||||||
|
tput bold
|
||||||
shift; printf "${1:2}\n"; shift; shift
|
shift; printf "${1:2}\n"; shift; shift
|
||||||
|
tput sgr0
|
||||||
local i=1; for item in "$@"; do
|
local i=1; for item in "$@"; do
|
||||||
echo "$item" | grep -qE '[0-9]+' && continue
|
echo "$item" | grep -qE '[0-9]+' && continue
|
||||||
printf '%s\n' "$i) $item"
|
printf '%s\n' "$i) $item"
|
||||||
|
|
Loading…
Reference in New Issue