Add theme_title_display_user config, docs.

See #72
This commit is contained in:
Justin Hileman 2017-01-19 10:18:56 -08:00
parent 86116b7e80
commit 249807071e
2 changed files with 6 additions and 3 deletions

View File

@ -81,6 +81,7 @@ set -g theme_display_date no
set -g theme_display_cmd_duration yes
set -g theme_title_display_process yes
set -g theme_title_display_path no
set -g theme_title_display_user yes
set -g theme_title_use_abbreviated_path no
set -g theme_date_format "+%a %H:%M"
set -g theme_avoid_ambiguous_glyphs yes
@ -97,6 +98,7 @@ set -g theme_project_dir_length 1
- `theme_title_display_process`. By default theme doesn't show current process name in terminal title. If you want to show it, just set to `yes`.
- `theme_title_display_path`. Use `no` to hide current working directory from title.
- `theme_title_display_user`. Set to `yes` to show the current user in the tab title (unless you're the default user).
- `theme_title_use_abbreviated_path`. Default is `yes`. This means your home directory will be displayed as `~` and `/usr/local` as `/u/local`. Set it to `no` if you prefer full paths in title.
**Prompt options**

View File

@ -1,10 +1,11 @@
# 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_user -S -d 'Display actual user if different from $default_user'
if [ "$theme_display_user" = 'yes' ]
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 .
hostname | read -l hostname __
@ -14,7 +15,7 @@ function __bobthefish_user -S -d 'Display actual user if different from $default
end
function fish_title
__bobthefish_user
__bobthefish_title_user
if [ "$theme_title_display_process" = 'yes' ]
echo $_