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-02-03 15:53:41 +08:00
|
|
|
set -l last_status $status
|
2012-09-06 16:30:26 +08:00
|
|
|
|
2014-10-03 05:02:53 +08:00
|
|
|
set -l color_cwd
|
|
|
|
set -l suffix
|
2017-07-21 01:45:32 +08:00
|
|
|
switch "$USER"
|
2016-11-02 10:19:45 +08:00
|
|
|
case root toor
|
|
|
|
if set -q fish_color_cwd_root
|
|
|
|
set color_cwd $fish_color_cwd_root
|
|
|
|
else
|
|
|
|
set color_cwd $fish_color_cwd
|
|
|
|
end
|
|
|
|
set suffix '#'
|
|
|
|
case '*'
|
2014-10-03 05:02:53 +08:00
|
|
|
set color_cwd $fish_color_cwd
|
2016-11-02 10:19:45 +08:00
|
|
|
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-02-03 15:53:41 +08:00
|
|
|
(__fish_print_pipestatus $last_status " [" "]" "|" (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
|