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
|
|
|
|
set -l last_status $status
|
|
|
|
|
|
|
|
set -l last_status_string ""
|
|
|
|
if [ $last_status -ne 0 ]
|
|
|
|
printf "%s(%d)%s " (set_color red --bold) $last_status (set_color normal)
|
|
|
|
end
|
|
|
|
|
2014-10-03 05:02:53 +08:00
|
|
|
# Just calculate this once, to save a few cycles when displaying the prompt
|
2012-09-06 16:30:26 +08:00
|
|
|
if not set -q __fish_prompt_hostname
|
2015-10-16 07:01:12 +08:00
|
|
|
set -g __fish_prompt_hostname (hostname|cut -d . -f 1)
|
2012-09-06 16:30:26 +08:00
|
|
|
end
|
|
|
|
|
2014-10-03 05:02:53 +08:00
|
|
|
set -l color_cwd
|
|
|
|
set -l suffix
|
2012-09-06 16:30:26 +08:00
|
|
|
switch $USER
|
2014-10-03 05:02:53 +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 '*'
|
|
|
|
set color_cwd $fish_color_cwd
|
|
|
|
set suffix '>'
|
2012-09-06 16:30:26 +08:00
|
|
|
end
|
|
|
|
|
2014-10-03 05:02:53 +08:00
|
|
|
echo -n -s "$USER" @ "$__fish_prompt_hostname" ' ' (set_color $color_cwd) (prompt_pwd) (set_color normal) "$suffix "
|
2012-09-06 16:30:26 +08:00
|
|
|
end
|