Display user in terminal title

This commit is contained in:
Pierre Thierry 2017-01-10 00:55:09 +01:00
parent 48f067bac0
commit 551a768534
2 changed files with 13 additions and 1 deletions

View File

@ -398,7 +398,7 @@ function __bobthefish_prompt_status -S -a last_status -d 'Display symbols for a
end
end
function __bobthefish_prompt_user -S -d 'Display actual user if different from $default_user'
function __bobthefish_prompt_user -S -d 'Display actual user if different from $default_user in a prompt segment'
if [ "$theme_display_user" = 'yes' ]
if [ "$USER" != "$default_user" -o -n "$SSH_CLIENT" ]
__bobthefish_start_segment $__color_username

View File

@ -3,7 +3,19 @@
# set -g theme_title_display_path no
# set -g theme_title_use_abbreviated_path no
function __bobthefish_user -S -d 'Display actual user if different from $default_user'
if [ "$theme_display_user" = 'yes' ]
if [ "$USER" != "$default_user" -o -n "$SSH_CLIENT" ]
set -l IFS .
hostname | read -l hostname __
echo -ns (whoami) '@' $hostname ' '
end
end
end
function fish_title
__bobthefish_user
if [ "$theme_title_display_process" = 'yes' ]
echo $_