From a8f53c8a3b840e1ae455c70d9b424f6bf400d39f Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Wed, 9 Jan 2019 00:55:38 -0700 Subject: [PATCH] add colour definitions --- customize.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/customize.sh b/customize.sh index aa67780..c0f1984 100644 --- a/customize.sh +++ b/customize.sh @@ -5,6 +5,15 @@ ### original files ####### + +# colour definitions +norm="\e[0m" +yellow="\e[93m" +cyan="\e[96m" +mag="\e[95m" +err="\e[1;31m" +ok="\e[1;32m" + ### Verify this script is running as root, otherwise exit with notification if [ $(id -u) -ne 0 ]; then echo -e "\n\e[1;31mThis script MUST be run as ROOT. Exiting\e[0m"