2012-09-06 08:30:26 +00:00
|
|
|
# name: Classic + Status
|
|
|
|
# author: David Frascone
|
|
|
|
|
2014-10-02 21:02:53 +00:00
|
|
|
function fish_prompt --description "Write out the prompt"
|
2012-09-06 08:30:26 +00: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-02 21:02:53 +00:00
|
|
|
set -l color_cwd
|
|
|
|
set -l suffix
|
2017-07-20 17:45:32 +00:00
|
|
|
switch "$USER"
|
2016-11-02 02:19:45 +00: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-02 21:02:53 +00:00
|
|
|
set color_cwd $fish_color_cwd
|
2016-11-02 02:19:45 +00:00
|
|
|
set suffix '>'
|
2012-09-06 08:30:26 +00:00
|
|
|
end
|
|
|
|
|
2016-10-23 22:02:14 +00:00
|
|
|
echo -n -s "$USER" @ (prompt_hostname) ' ' (set_color $color_cwd) (prompt_pwd) (set_color normal) "$suffix "
|
2012-09-06 08:30:26 +00:00
|
|
|
end
|