mirror of
https://github.com/oh-my-fish/theme-bobthefish.git
synced 2024-10-27 20:34:23 +00:00
Why: 1. `$_` is marked as deprecated https://fishshell.com/docs/current/language.html#envvar-_ 2. `$_` contains wrong process name in cases like this one: ```fish sleep 1000 # `sleep` is the process, now press Ctrl-Z to suspend fg # unsuspend it, now `fg` is shown as the process ``` `status current-command` will show `sleep` instead, which makes more sense.
35 lines
975 B
Fish
35 lines
975 B
Fish
# You can override some default title options in your config.fish:
|
|
# set -g theme_title_display_process no
|
|
# set -g theme_title_display_path no
|
|
# set -g theme_title_display_user yes
|
|
# set -g theme_title_use_abbreviated_path no
|
|
|
|
function __bobthefish_title_user -S -d 'Display actual user if different from $default_user'
|
|
if [ "$theme_title_display_user" = 'yes' ]
|
|
if [ "$USER" != "$default_user" -o -n "$SSH_CLIENT" ]
|
|
set -l IFS .
|
|
uname -n | read -l host __
|
|
echo -ns (whoami) '@' $host ' '
|
|
end
|
|
end
|
|
end
|
|
|
|
function fish_title
|
|
__bobthefish_title_user
|
|
|
|
if [ "$theme_title_display_process" = 'yes' ]
|
|
status current-command
|
|
|
|
[ "$theme_title_display_path" != 'no' ]
|
|
and echo ' '
|
|
end
|
|
|
|
if [ "$theme_title_display_path" != 'no' ]
|
|
if [ "$theme_title_use_abbreviated_path" = 'no' ]
|
|
echo $PWD
|
|
else
|
|
prompt_pwd
|
|
end
|
|
end
|
|
end
|