1
Fork 0
mirror of https://github.com/Steffo99/config-fish.git synced 2024-10-16 14:27:34 +00:00
config-fish/functions/log-f.fish
2024-08-21 11:45:18 +02:00

21 lines
349 B
Fish

function log-f
if [ $DOTFISH_LOG_LEVEL -lt 0 ]
return
end
set_color --background red
set_color brwhite
echo -n -- "$argv[1] "
set_color normal
set_color --background brred
set_color --bold brwhite
echo -n -- "$argv[2]"
set_color normal
set_color --background red
set_color brwhite
echo -n -- " $argv[3]"
echo
set_color reset
end