blob: cb10121a00efa6a9617e2c7f34f79edf67f54b50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
function fish_right_prompt
set last_status $status
# check for which color to use
if test $last_status -eq 0
set color green
else
set color red
end
echo -e (set_color $color)"[$last_status]"
end
|