From a4d2cde43bc8c39306131c157ea0d535c1eabe72 Mon Sep 17 00:00:00 2001 From: Beeranco <49772805+Beeranco@users.noreply.github.com> Date: Sat, 12 Aug 2023 03:50:59 +0200 Subject: [PATCH] Update greetings.sh Added color to highlight the users name --- MOTD/greetings.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/MOTD/greetings.sh b/MOTD/greetings.sh index 43f6065..7d067aa 100644 --- a/MOTD/greetings.sh +++ b/MOTD/greetings.sh @@ -1,3 +1,6 @@ +GREEN='\033[1;32m' +WHITE='\033[1;37m' + echo "" -echo "Welcome %name%! To run the updater enter the following to the console:" +echo -e "Welcome ${GREEN}Jarno${WHITE}! To run the updater enter the following to the console:" echo "bash /opt/updater.sh"