mirror of
https://github.com/rocky-linux/rocky-tools.git
synced 2024-11-21 20:51:26 +00:00
Turn off colors
This is for two reaons: 1. There have been a number of complaints about the color blue. For now I can't get reasonable agreement on which color to make informative messages and it will differ depending on what the background color is of a person's terminal. 2. Currently the log is generated simply by splitting stdout and stderr. That means that color codes go to the log, which is less than ideal. We need separate logging routines that don't send the color codes but for now turning off color will suffice. This has been accomplished simply by commenting out the tput assignments at the beginning of the script. It is likely that osme form of color support will go back in at some point so we'll keep the old code around for now.
This commit is contained in:
parent
800cf77a38
commit
b2d0c000d4
@ -16,9 +16,10 @@ truncate -s0 "$logfile"
|
||||
exec > >(tee -a "$logfile") 2> >(tee -a "$logfile" >&2)
|
||||
|
||||
# List nocolor last here so that -x doesn't bork the display.
|
||||
errcolor=$(tput setaf 1)
|
||||
blue=$(tput setaf 4)
|
||||
nocolor=$(tput op)
|
||||
#errcolor=$(tput setaf 1)
|
||||
#blue=$(tput setaf 4)
|
||||
#nocolor=$(tput op)
|
||||
unset errcolor blue nocolor
|
||||
|
||||
export LANG=en_US.UTF-8
|
||||
shopt -s nullglob
|
||||
|
Loading…
Reference in New Issue
Block a user