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
|
2020-09-05 15:16:49 +08:00
|
|
|
set -lx __fish_last_status $status # Export for __fish_print_pipestatus.
|
2012-09-06 16:30:26 +08:00
|
|
|
|
2020-09-05 15:02:32 +08:00
|
|
|
if functions -q fish_is_root_user; and fish_is_root_user
|
2020-06-17 23:55:23 +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) \
|
|
|
|
(prompt_pwd) (set_color normal)
|
|
|
|
else
|
2021-04-25 15:49:18 +08:00
|
|
|
set -l status_color (set_color $fish_color_status)
|
|
|
|
set -l statusb_color (set_color --bold $fish_color_status)
|
|
|
|
set -l pipestatus_string (__fish_print_pipestatus "[" "]" "|" "$status_color" "$statusb_color" $last_pipestatus)
|
2012-09-06 16:30:26 +08:00
|
|
|
|
2021-02-07 13:56:41 +08:00
|
|
|
printf '[%s] %s%s@%s %s%s %s%s%s \n> ' (date "+%H:%M:%S") (set_color brblue) \
|
2020-06-17 23:55:23 +08:00
|
|
|
$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
|