From 1d92c9f120ca0a8abf12d3457b1cf8b20ad6bcab Mon Sep 17 00:00:00 2001 From: Axel Hahn <ax2002@gmx.net> Date: Sun, 27 Oct 2024 12:01:00 +0100 Subject: [PATCH] update colors for headings --- includes/inc_bash.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/includes/inc_bash.sh b/includes/inc_bash.sh index 636986f..2a5ba7c 100755 --- a/includes/inc_bash.sh +++ b/includes/inc_bash.sh @@ -42,6 +42,10 @@ function fetchrc(){ ;; "head") sColorcode="33" # yellow ;; + "head2") sColorcode="36" # purple + ;; + "head3") sColorcode="35" # cyan + ;; "cmd") sColorcode="94" # light blue ;; "input") sColorcode="92" # green @@ -88,7 +92,7 @@ function fetchrc(){ function h2(){ - color head + color head2 echo echo "========== $* ==========" echo @@ -96,7 +100,7 @@ function fetchrc(){ } function h3(){ - color head + color head3 echo echo "---------- $*" color reset -- GitLab