dotfiles/fish/functions/fish_prompt.fish
2022-11-27 14:20:25 +08:00

14 lines
192 B
Fish

# Green and red depending on exit status.
function fish_prompt
if [ $status = 0 ]
set_color green
else
set_color red
end
echo -n '≫'
set_color normal
echo -n ' '
end