From 7e4aa53c3317d28b00a1d8287e42c33100e29826 Mon Sep 17 00:00:00 2001 From: ReachableCEO Date: Mon, 30 Jun 2025 11:33:06 -0500 Subject: [PATCH] now with christmas... --- SetupNewSystem.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/SetupNewSystem.sh b/SetupNewSystem.sh index c29e561..55512af 100644 --- a/SetupNewSystem.sh +++ b/SetupNewSystem.sh @@ -11,20 +11,21 @@ export PS4='(${BASH_SOURCE}:${LINENO}): - [${SHLVL},${BASH_SUBSHELL},$?] $ ' function print_info() { + GREEN='\033[0;32m' + NC='\033[0m' tput bold - tput setaf 1 - echo "$1" + echo -e "$GREEN $1${NC}" tput sgr0 - } function print_error() { + RED='\033[0;31m' + NC='\033[0m' tput bold - tput setaf 1 + echo -e "$RED $1${NC}" echo "$1" tput sgr0 - } function error_out()