ArchSetupScripts/warn.sh

9 lines
139 B
Bash
Raw Normal View History

2024-11-10 13:58:16 +00:00
warn(){
local txtylw=$(tput setaf 3) # Yellow
local txtwht=$(tput setaf 7) # White
local msg=$*
echo "$txtylw $msg $txtwht"
}
warn $1