blob: 91833c69d330aa24f31cbad7f29056cb1d218514 (
plain)
1
2
3
4
5
6
7
|
function fish_prompt
if test "$PWD" = "/home/$USER"
echo -e (set_color green)$USER(set_color white)"@"(set_color green)"~"\n(set_color white)":: "
else
echo -e (set_color green)$USER(set_color white)"@"(set_color green)$PWD\n(set_color white)":: "
end
end
|