aboutsummaryrefslogtreecommitdiff
path: root/src/cli/install.sh
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/cli/install.sh52
1 files changed, 14 insertions, 38 deletions
diff --git a/src/cli/install.sh b/src/cli/install.sh
index e771ba28d..9c92bb745 100644
--- a/src/cli/install.sh
+++ b/src/cli/install.sh
@@ -1,52 +1,28 @@
#!/bin/bash
-
# Reset
-Color_Off='' # Text Reset
+Color_Off=''
# Regular Colors
-Black='' # Black
-Red='' # Red
-Green='' # Green
-Yellow='' # Yellow
-Blue='' # Blue
-Purple='' # Purple
-Cyan='' # Cyan
-White='' # White
+Red=''
+Green=''
# Bold
-BBlack='' # Black
-BRed='' # Red
-BGreen='' # Green
-BYellow='' # Yellow
-BBlue='' # Blue
-BPurple='' # Purple
-BCyan='' # Cyan
-BWhite='' # White
+BWhite=''
+BGreen=''
if test -t 1; then
-# Reset
-Color_Off='\033[0m' # Text Reset
+ # Reset
+ Color_Off='\033[0m' # Text Reset
-# Regular Colors
-Black='\033[0;30m' # Black
-Red='\033[0;31m' # Red
-Green='\033[0;32m' # Green
-Yellow='\033[0;33m' # Yellow
-Blue='\033[0;34m' # Blue
-Purple='\033[0;35m' # Purple
-Cyan='\033[0;36m' # Cyan
-White='\033[0;37m' # White
+ # Regular Colors
+ Red='\033[0;31m' # Red
+ Green='\033[0;32m' # Green
+ White='\033[0;37m' # White
-# Bold
-BBlack='\033[1;30m' # Black
-BRed='\033[1;31m' # Red
-BGreen='\033[1;32m' # Green
-BYellow='\033[1;33m' # Yellow
-BBlue='\033[1;34m' # Blue
-BPurple='\033[1;35m' # Purple
-BCyan='\033[1;36m' # Cyan
-BWhite='\033[1;37m' # White
+ # Bold
+ BGreen='\033[1;32m' # Green
+ BWhite='\033[1;37m' # White
fi