We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9f2469 commit dbe4241Copy full SHA for dbe4241
monitor.sh
@@ -27,16 +27,20 @@
27
#VERSION NUMBER
28
export version=0.2.200
29
30
-#COLOR OUTPUT FOR RICH OUTPUT
31
-ORANGE=$'\e[1;33m'
32
-RED=$'\e[1;31m'
33
-NC=$'\e[0m'
34
-GREEN=$'\e[1;32m'
35
-PURPLE=$'\e[1;35m'
36
-BLUE=$'\e[1;34m'
37
-CYAN=$'\e[1;36m'
38
-YELLOW=$'\e[01;33m'
39
-REPEAT=$'\e[1A'
+if [ -z ${NO_COLOR} -o -z ${NOCOLOR} ] ; then
+ #COLOR OUTPUT FOR RICH OUTPUT
+ ORANGE=$'\e[1;33m'
+ RED=$'\e[1;31m'
+ NC=$'\e[0m'
+ GREEN=$'\e[1;32m'
+ PURPLE=$'\e[1;35m'
+ BLUE=$'\e[1;34m'
+ CYAN=$'\e[1;36m'
+ YELLOW=$'\e[01;33m'
40
+ REPEAT=$'\e[1A'
41
+else
42
+ :
43
+fi
44
45
# ----------------------------------------------------------------------------------------
46
# BETA WARNING ONLY IF ON THE BETA CHANNEL
0 commit comments