1
Fork 0
mirror of https://github.com/Steffo99/config-fish.git synced 2024-12-22 14:54:23 +00:00
config-fish/functions/log-f.fish
2024-11-27 13:47:30 +01:00

21 lines
362 B
Fish

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