blob: 122616b052c590a5b7cf6d796c5a5194a0f22553 (
plain)
1
2
3
4
5
6
7
|
function fish_prompt
if test "$PWD" = "/home/maxlol"
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
|