From 0ea7ce1783458e96437d4595c4090c98dde70eb5 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 1 Feb 2022 15:01:59 -0300 Subject: [PATCH] Use bold text in ...plainText...() --- scripts/common.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/common.sh b/scripts/common.sh index fd45d39..57f4cd5 100755 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -104,7 +104,9 @@ usePlainText() { --yesno) yesno=true ;; esac done + tput bold printf "${2:2}\n" + tput sgr0 if [ $inputbox = true ]; then printLine && printf "\n" read -r readVar @@ -133,7 +135,9 @@ usePlainText() { usePlainTextMenu() { clear + tput bold shift; printf "${1:2}\n"; shift; shift + tput sgr0 local i=1; for item in "$@"; do echo "$item" | grep -qE '[0-9]+' && continue printf '%s\n' "$i) $item"