mirror of
https://github.com/wahyd4/gvm.git
synced 2026-08-09 04:46:19 +10:00
13 lines
188 B
Plaintext
13 lines
188 B
Plaintext
display_message() {
|
|
which tput &> /dev/null
|
|
if [[ "$?" == "0" ]] && [[ "$TERM" == "xterm" ]]; then
|
|
# GREEN!
|
|
tput sgr0
|
|
tput setaf 2
|
|
echo "$1"
|
|
tput sgr0
|
|
else
|
|
echo "$1"
|
|
fi
|
|
}
|