From 8daefa49a760fed60ebeaa11fc2810f03864775a Mon Sep 17 00:00:00 2001 From: Tommaso Chiti Date: Thu, 12 May 2022 09:30:30 +0200 Subject: [PATCH] Better error info (cosmetics). --- easy-arch.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/easy-arch.sh b/easy-arch.sh index 0123b51..27411dc 100755 --- a/easy-arch.sh +++ b/easy-arch.sh @@ -6,6 +6,7 @@ clear # Cosmetics (colours for text). BOLD='\e[1m' BRED='\e[91m' +BBLUE='\e[34m' BGREEN='\e[92m' BYELLOW='\e[93m' RESET='\e[0m' @@ -16,7 +17,7 @@ print () { } # Alert user of bad input (function). incEcho () { - echo -e "${BRED}$1${RESET}" + echo -e "${BOLD}${BRED}[ ${BBLUE}•${BRED} ] $1${RESET}" } # Virtualization check (function).