From 38d1f76621b2a1b610017bdb7fcd66e6fa249052 Mon Sep 17 00:00:00 2001 From: Eric Claeys <83164203+EricClaeys@users.noreply.github.com> Date: Sat, 19 Oct 2024 20:30:58 -0600 Subject: [PATCH] Update variables.sh: use underline instead of bold Depending on user options, bold may turn characters lighter, not darker. --- variables.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/variables.sh b/variables.sh index 2fa716b77..63d0fbde5 100644 --- a/variables.sh +++ b/variables.sh @@ -18,7 +18,7 @@ if [[ -z "${ALLSKY_VARIABLE_SET}" ]]; then if tty --silent ; then ON_TTY="true" DIALOG_RED="\Z1"; DIALOG_NORMAL="\Zn" - DIALOG_BOLD="\Zb" + DIALOG_UNDERLINE="\Zu" GREEN="\033[0;32m"; wOK="${GREEN}" YELLOW="\033[0;33m"; wWARNING="${YELLOW}" RED="\033[0;31m"; wERROR="${RED}" @@ -30,7 +30,7 @@ if [[ -z "${ALLSKY_VARIABLE_SET}" ]]; then else ON_TTY="false" DIALOG_RED=""; DIALOG_NORMAL="" - DIALOG_BOLD="" + DIALOG_UNDERLINE="" GREEN=""; wOK="" YELLOW=""; wWARNING="" RED=""; wERROR=""