2012-09-06 16:30:26 +08:00
|
|
|
# name: Informative
|
|
|
|
# http://michal.karzynski.pl/blog/2009/11/19/my-informative-shell-prompt/
|
|
|
|
|
2019-04-09 16:13:10 +08:00
|
|
|
function fish_prompt --description 'Informative prompt'
|
2012-09-06 16:30:26 +08:00
|
|
|
#Save the return status of the previous command
|
2019-02-28 14:37:56 +08:00
|
|
|
set -l last_pipestatus $pipestatus
|
2012-09-06 16:30:26 +08:00
|
|
|
|
2017-07-21 01:45:32 +08:00
|
|
|
switch "$USER"
|
2016-11-02 10:19:45 +08:00
|
|
|
case root toor
|
2019-04-09 18:37:10 +08:00
|
|
|
printf '%s@%s %s%s%s# ' $USER (prompt_hostname) (set -q fish_color_cwd_root
|
|
|
|
and set_color $fish_color_cwd_root
|
|
|
|
or set_color $fish_color_cwd) \
|
2019-05-05 18:09:25 +08:00
|
|
|
(prompt_pwd) (set_color normal)
|
2016-11-02 10:19:45 +08:00
|
|
|
case '*'
|
2019-12-11 05:32:35 +08:00
|
|
|
set -l pipestatus_string (__fish_print_pipestatus "[" "] " "|" (set_color $fish_color_status) \
|
|
|
|
(set_color --bold $fish_color_status) $last_pipestatus)
|
2012-09-06 16:30:26 +08:00
|
|
|
|
2019-12-11 05:32:35 +08:00
|
|
|
printf '[%s] %s%s@%s %s%s %s%s%s \f\r> ' (date "+%H:%M:%S") (set_color brblue) \
|
|
|
|
$USER (prompt_hostname) (set_color $fish_color_cwd) $PWD $pipestatus_string \
|
|
|
|
(set_color normal)
|
2016-11-02 10:19:45 +08:00
|
|
|
end
|
2014-07-30 17:55:47 +08:00
|
|
|
end
|