2012-09-06 16:30:26 +08:00
|
|
|
# name: Classic + Status
|
|
|
|
# author: David Frascone
|
|
|
|
|
2014-10-03 05:02:53 +08:00
|
|
|
function fish_prompt --description "Write out the prompt"
|
2012-09-06 16:30:26 +08:00
|
|
|
# Save our status
|
2019-02-27 02:06:36 +08:00
|
|
|
set -l last_pipestatus $pipestatus
|
2020-09-05 15:16:49 +08:00
|
|
|
set -lx __fish_last_status $status # Export for __fish_print_pipestatus.
|
2012-09-06 16:30:26 +08:00
|
|
|
|
2014-10-03 05:02:53 +08:00
|
|
|
set -l color_cwd
|
|
|
|
set -l suffix
|
2020-06-17 23:55:23 +08:00
|
|
|
|
2020-09-05 15:02:32 +08:00
|
|
|
if functions -q fish_is_root_user; and fish_is_root_user
|
2020-06-17 23:55:23 +08:00
|
|
|
if set -q fish_color_cwd_root
|
|
|
|
set color_cwd $fish_color_cwd_root
|
|
|
|
else
|
2014-10-03 05:02:53 +08:00
|
|
|
set color_cwd $fish_color_cwd
|
2020-06-17 23:55:23 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
set suffix '#'
|
|
|
|
else
|
|
|
|
set color_cwd $fish_color_cwd
|
|
|
|
set suffix '>'
|
2012-09-06 16:30:26 +08:00
|
|
|
end
|
|
|
|
|
2019-12-11 08:06:31 +08:00
|
|
|
echo -n -s "$USER" @ (prompt_hostname) ' ' (set_color $color_cwd) (prompt_pwd) \
|
2020-09-05 15:16:49 +08:00
|
|
|
" "(__fish_print_pipestatus "[" "]" "|" (set_color $fish_color_status) (set_color --bold $fish_color_status) $last_pipestatus) \
|
2020-01-14 03:34:22 +08:00
|
|
|
(set_color normal) "$suffix "
|
2012-09-06 16:30:26 +08:00
|
|
|
end
|