ArchSetupScripts/warn.sh
2024-11-10 08:58:16 -05:00

9 lines
139 B
Bash
Executable File

warn(){
local txtylw=$(tput setaf 3) # Yellow
local txtwht=$(tput setaf 7) # White
local msg=$*
echo "$txtylw $msg $txtwht"
}
warn $1