oh-my-fish/themes/zish/fish_right_prompt.fish
2014-02-18 21:26:51 -05:00

12 lines
232 B
Fish

function fish_right_prompt
set -l exit_code $status
if test $exit_code -ne 0
set_color red
else
set_color green
end
printf '%d' $exit_code
set_color yellow
printf ' < %s' (date +%H:%M:%S)
set_color normal
end