From e54fdbd64ea76a19f1bc9c7fc0cd9b0d81552fbd Mon Sep 17 00:00:00 2001 From: Beeranco <49772805+Beeranco@users.noreply.github.com> Date: Sun, 13 Aug 2023 16:50:23 +0200 Subject: [PATCH] Update greetings.sh Fixed color reset back to white --- MOTD/greetings.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MOTD/greetings.sh b/MOTD/greetings.sh index 1e23413..713b9ce 100644 --- a/MOTD/greetings.sh +++ b/MOTD/greetings.sh @@ -1,6 +1,6 @@ GREEN='\033[1;32m' -WHITE='\033[1;37m' +RESET='\033[0m' echo "" -echo -e "Welcome ${GREEN}%name%${WHITE}! To run the updater enter the following to the console:" +echo -e "Welcome ${GREEN}%name%${RESET}! To run the updater enter the following to the console:" echo "bash /opt/updater.sh"