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
|
2019-02-26 18:06:36 +00:00
|
|
|
set -l last_pipestatus $pipestatus
|
2012-09-06 08:30:26 +00:00
|
|
|
|
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
|
|
|
|
|
2019-12-11 00:06:31 +00:00
|
|
|
echo -n -s "$USER" @ (prompt_hostname) ' ' (set_color $color_cwd) (prompt_pwd) \
|
|
|
|
(__fish_print_pipestatus " [" "]" "|" (set_color $fish_color_status) (set_color --bold $fish_color_status) $last_pipestatus) \
|
|
|
|
(set_color normal) "$suffix "
|
2012-09-06 08:30:26 +00:00
|
|
|
end
|