17 lines
447 B
Fish
17 lines
447 B
Fish
function fish_prompt
|
|
if test -n "$SSH_TTY"
|
|
echo -n (set_color brred)"$USER"(set_color white)'@'(set_color yellow)(prompt_hostname)' '
|
|
end
|
|
|
|
set_color -o
|
|
|
|
echo -n (set_color red)''(set_color green)''(set_color yellow)' '
|
|
if fish_is_root_user
|
|
echo -n (set_color red)'# '
|
|
else
|
|
echo -n (set_color yellow)' '
|
|
end
|
|
echo -n (set_color bryellow)$(prompt_pwd)' '
|
|
set_color normal
|
|
end
|