summaryrefslogtreecommitdiff
path: root/jstmax_fish_prompt.fish
blob: 2b91fa348b60cb20341d4cbe9582667e509cb4c4 (plain)
1
2
3
4
5
6
7
function fish_prompt
    if test "$PWD" = "/home/massi"
      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