2013-09-18 06:17:15 +00:00
# name: bobthefish
#
# bobthefish is a Powerline-style, Git-aware fish theme optimized for awesome.
#
2015-10-27 18:05:01 +00:00
# You will need a Powerline-patched font for this to work:
2013-09-18 06:17:15 +00:00
#
2016-02-20 07:10:06 +00:00
# https://powerline.readthedocs.org/en/master/installation.html#patched-fonts
2013-09-18 06:17:15 +00:00
#
# I recommend picking one of these:
#
# https://github.com/Lokaltog/powerline-fonts
#
2016-02-19 06:00:31 +00:00
# For more advanced awesome, install a nerd fonts patched font (and be sure to
# enable nerd fonts support with `set -g theme_nerd_fonts yes`):
#
# https://github.com/ryanoasis/nerd-fonts
#
2015-10-27 18:05:01 +00:00
# You can override some default prompt options in your config.fish:
2013-09-18 06:17:15 +00:00
#
2014-11-22 12:28:40 +00:00
# set -g theme_display_git no
2018-01-10 21:38:42 +00:00
# set -g theme_display_git_dirty no
2015-04-24 17:59:50 +00:00
# set -g theme_display_git_untracked no
2015-06-24 21:50:28 +00:00
# set -g theme_display_git_ahead_verbose yes
2018-02-21 06:25:19 +00:00
# set -g theme_display_git_dirty_verbose yes
2019-03-16 22:35:38 +00:00
# set -g theme_display_git_stashed_verbose yes
2020-10-21 15:54:03 +00:00
# set -g theme_display_git_default_branch yes
# set -g theme_git_default_branches main trunk
2016-03-30 23:57:34 +00:00
# set -g theme_git_worktree_support yes
2015-12-16 18:12:21 +00:00
# set -g theme_display_vagrant yes
2016-06-09 02:31:16 +00:00
# set -g theme_display_docker_machine no
2018-05-04 12:46:14 +00:00
# set -g theme_display_k8s_context yes
2020-02-29 17:39:32 +00:00
# set -g theme_display_k8s_namespace no
2020-09-08 03:06:39 +00:00
# set -g theme_display_aws_vault_profile yes
2014-11-26 17:00:16 +00:00
# set -g theme_display_hg yes
2014-11-22 12:28:40 +00:00
# set -g theme_display_virtualenv no
2019-06-20 08:12:36 +00:00
# set -g theme_display_nix no
2014-11-23 20:27:57 +00:00
# set -g theme_display_ruby no
2018-03-22 23:37:03 +00:00
# set -g theme_display_user ssh
# set -g theme_display_hostname ssh
2019-10-21 16:51:56 +00:00
# set -g theme_display_sudo_user yes
2016-10-18 14:04:59 +00:00
# set -g theme_display_vi no
2021-01-24 22:14:30 +00:00
# set -g theme_display_node yes
2015-10-14 03:34:35 +00:00
# set -g theme_avoid_ambiguous_glyphs yes
2016-05-15 23:43:01 +00:00
# set -g theme_powerline_fonts no
2016-02-19 06:00:31 +00:00
# set -g theme_nerd_fonts yes
2016-03-03 11:12:09 +00:00
# set -g theme_show_exit_status yes
2019-10-11 14:51:50 +00:00
# set -g theme_display_jobs_verbose yes
2013-09-18 06:17:15 +00:00
# set -g default_user your_normal_user
2016-06-09 02:31:16 +00:00
# set -g theme_color_scheme dark
2016-12-30 00:12:55 +00:00
# set -g fish_prompt_pwd_dir_length 0
# set -g theme_project_dir_length 1
2017-12-19 15:10:48 +00:00
# set -g theme_newline_cursor yes
2013-09-18 06:17:15 +00:00
2017-12-19 16:32:59 +00:00
# ==============================
# Helper methods
# ==============================
2014-11-16 10:47:15 +00:00
2017-12-24 02:26:29 +00:00
function __bobthefish_basename -d 'basically basename, but faster'
2019-01-13 17:56:20 +00:00
string replace -r '^.*/' '' -- $argv
2017-12-24 02:26:29 +00:00
end
function __bobthefish_dirname -d 'basically dirname, but faster'
2019-01-13 17:56:20 +00:00
string replace -r '/[^/]+/?$' '' -- $argv
2017-12-24 02:26:29 +00:00
end
2019-03-18 14:43:13 +00:00
function __bobthefish_pwd -d 'Get a normalized $PWD'
# The pwd builtin accepts `-P` on at least Fish 3.x, but fall back to $PWD if that doesn't work
builtin pwd -P 2 > /dev/null
or echo $PWD
end
2020-03-18 03:53:48 +00:00
# Note that for fish < 3.0 this falls back to unescaped, rather than trying to do something clever /shrug
# After we drop support for older fishies, we can inline this without the fallback.
function __bobthefish_escape_regex -a str -d 'A backwards-compatible `string escape --style=regex` implementation'
string escape --style = regex " $str " 2 > /dev/null
or echo " $str "
end
2016-01-25 15:06:48 +00:00
function __bobthefish_git_branch -S -d 'Get the current git branch (or commitish)'
2020-12-02 06:49:10 +00:00
set -l branch ( command git symbolic-ref HEAD 2 > /dev/null | string replace -r '^refs/heads/' '' )
2019-01-13 17:56:20 +00:00
and begin
2020-10-21 15:54:03 +00:00
[ - n " $theme_git_default_branches " ]
or set -l theme_git_default_branches master main
[ " $theme_display_git_master_branch " != 'yes' - a " $theme_display_git_default_branch " != 'yes' ]
and contains $branch $theme_git_default_branches
2019-01-13 17:56:20 +00:00
and echo $branch_glyph
and return
2019-03-17 05:19:38 +00:00
# truncate the middle of the branch name, but only if it's 25+ characters
2020-10-21 15:54:03 +00:00
set -l truncname $branch
2019-10-02 21:51:05 +00:00
[ " $theme_use_abbreviated_branch_name " = 'yes' ]
2020-10-21 15:54:03 +00:00
and set truncname ( string replace -r '^(.{17}).{3,}(.{5})$' "\$1…\$2" $branch )
2019-03-17 05:19:38 +00:00
2020-10-21 15:54:03 +00:00
echo $branch_glyph $truncname
2019-01-13 17:56:20 +00:00
and return
end
2016-08-25 15:01:08 +00:00
2019-01-13 17:56:20 +00:00
set -l tag ( command git describe --tags --exact-match 2 > /dev/null)
2018-03-25 15:50:43 +00:00
and echo " $tag_glyph $tag "
2016-08-25 15:01:08 +00:00
and return
2019-01-13 17:56:20 +00:00
set -l branch ( command git show-ref --head -s --abbrev | head -n1 2 > /dev/null)
echo " $detached_glyph $branch "
2013-09-18 06:17:15 +00:00
end
2016-01-25 15:06:48 +00:00
function __bobthefish_hg_branch -S -d 'Get the current hg branch'
2019-01-13 17:56:20 +00:00
set -l branch ( command hg branch 2 > /dev/null)
set -l book ( command hg book | command grep \* | cut -d \ -f3 )
echo " $branch_glyph $branch @ $book "
2014-11-16 10:47:15 +00:00
end
2019-01-13 18:02:32 +00:00
function __bobthefish_pretty_parent -S -a child_dir -d 'Print a parent directory, shortened to fit the prompt'
2019-01-13 17:56:20 +00:00
set -q fish_prompt_pwd_dir_length
2016-12-30 00:12:55 +00:00
or set -l fish_prompt_pwd_dir_length 1
2019-01-13 17:56:20 +00:00
# Replace $HOME with ~
set -l real_home ~
2020-03-18 04:09:15 +00:00
set -l parent_dir ( string replace -r '^' ( __bobthefish_escape_regex " $real_home " ) '($|/)' '~$1' ( __bobthefish_dirname $child_dir ) )
2016-12-30 00:12:55 +00:00
2019-01-13 17:56:20 +00:00
# Must check whether `$parent_dir = /` if using native dirname
if [ - z " $parent_dir " ]
echo -n /
return
end
2016-12-30 00:12:55 +00:00
2019-01-13 17:56:20 +00:00
if [ $fish_prompt_pwd_dir_length - eq 0 ]
echo -n " $parent_dir / "
return
end
2016-12-30 00:12:55 +00:00
2019-01-13 17:56:20 +00:00
string replace -ar '(\.?[^/]{' " $fish_prompt_pwd_dir_length " '})[^/]*/' '$1/' " $parent_dir / "
2013-09-18 06:17:15 +00:00
end
2019-03-18 14:43:13 +00:00
function __bobthefish_ignore_vcs_dir -a real_pwd -d 'Check whether the current directory should be ignored as a VCS segment'
2019-01-13 17:56:20 +00:00
for p in $theme_vcs_ignore_paths
set ignore_path ( realpath $p 2 > /dev/null)
2019-01-13 18:46:50 +00:00
switch $real_pwd /
2019-01-13 17:56:20 +00:00
case $ignore_path /\*
echo 1
return
end
2017-12-24 03:52:07 +00:00
end
2017-10-26 12:27:08 +00:00
end
2019-03-18 14:43:13 +00:00
function __bobthefish_git_project_dir -S -a real_pwd -d 'Print the current git project base directory'
2019-01-13 17:56:20 +00:00
[ " $theme_display_git " = 'no' ]
and return
2017-12-19 14:52:08 +00:00
2019-01-13 17:56:20 +00:00
set -q theme_vcs_ignore_paths
2019-03-18 14:43:13 +00:00
and [ ( __bobthefish_ignore_vcs_dir $real_pwd ) ]
2017-12-19 14:52:08 +00:00
and return
2017-10-26 12:27:08 +00:00
2019-01-13 17:56:20 +00:00
if [ " $theme_git_worktree_support " != 'yes' ]
2019-01-13 19:24:41 +00:00
set -l git_toplevel ( command git rev-parse --show-toplevel 2 > /dev/null)
[ - z " $git_toplevel " ]
and return
# If there are no symlinks, just use git toplevel
2019-03-18 14:43:13 +00:00
switch $real_pwd /
2019-01-13 19:24:41 +00:00
case $git_toplevel /\*
echo $git_toplevel
return
end
# Otherwise, we need to find the equivalent directory in the $PWD
2019-03-18 14:43:13 +00:00
set -l d $real_pwd
2019-01-13 19:24:41 +00:00
while not [ - z " $d " ]
if [ ( realpath " $d " ) = " $git_toplevel " ]
echo $d
return
end
[ " $d " = '/' ]
and return
set d ( __bobthefish_dirname $d )
end
2019-01-13 17:56:20 +00:00
return
end
2016-03-30 23:57:34 +00:00
2019-01-13 17:56:20 +00:00
set -l git_dir ( command git rev-parse --git-dir 2 > /dev/null)
or return
2016-03-30 23:57:34 +00:00
2019-01-13 17:56:20 +00:00
pushd $git_dir
2023-06-16 07:40:21 +00:00
set git_dir ( __bobthefish_pwd )
2019-01-13 17:56:20 +00:00
popd
2016-03-30 23:57:34 +00:00
2019-03-18 14:43:13 +00:00
switch $real_pwd /
2019-01-13 17:56:20 +00:00
case $git_dir /\*
# Nothing works quite right if we're inside the git dir
# TODO: fix the underlying issues then re-enable the stuff below
# # if we're inside the git dir, sweet. just return that.
# set -l toplevel (command git rev-parse --show-toplevel 2>/dev/null)
# if [ "$toplevel" ]
# switch $git_dir/
# case $toplevel/\*
# echo $git_dir
# end
# end
return
end
2016-03-30 23:57:34 +00:00
2019-01-13 17:56:20 +00:00
set -l project_dir ( __bobthefish_dirname $git_dir )
2016-03-30 23:57:34 +00:00
2019-03-18 14:43:13 +00:00
switch $real_pwd /
2019-01-13 17:56:20 +00:00
case $project_dir /\*
echo $project_dir
return
end
2016-03-30 23:57:34 +00:00
2019-01-13 17:56:20 +00:00
set project_dir ( command git rev-parse --show-toplevel 2 > /dev/null)
2019-03-18 14:43:13 +00:00
switch $real_pwd /
2019-01-13 17:56:20 +00:00
case $project_dir /\*
echo $project_dir
end
2013-09-18 06:17:15 +00:00
end
2019-03-18 14:43:13 +00:00
function __bobthefish_hg_project_dir -S -a real_pwd -d 'Print the current hg project base directory'
2019-01-13 17:56:20 +00:00
[ " $theme_display_hg " = 'yes' ]
or return
2017-12-19 14:52:08 +00:00
2019-01-13 17:56:20 +00:00
set -q theme_vcs_ignore_paths
2019-03-18 14:43:13 +00:00
and [ ( __bobthefish_ignore_vcs_dir $real_pwd ) ]
2017-12-19 14:52:08 +00:00
and return
2017-10-26 12:27:08 +00:00
2019-03-18 14:43:13 +00:00
set -l d $real_pwd
2019-01-13 17:56:20 +00:00
while not [ - z " $d " ]
if [ - e $d /.hg ]
command hg root --cwd " $d " 2 > /dev/null
return
end
[ " $d " = '/' ]
and return
set d ( __bobthefish_dirname $d )
2014-11-23 19:36:12 +00:00
end
2014-11-16 10:47:15 +00:00
end
2019-03-18 14:43:13 +00:00
function __bobthefish_project_pwd -S -a project_root_dir -a real_pwd -d 'Print the working directory relative to project root'
2019-01-13 17:56:20 +00:00
set -q theme_project_dir_length
2016-12-30 00:12:55 +00:00
or set -l theme_project_dir_length 0
2020-03-18 03:53:48 +00:00
set -l project_dir ( string replace -r '^' ( __bobthefish_escape_regex " $project_root_dir " ) '($|/)' '' $real_pwd )
2016-12-30 00:12:55 +00:00
2019-01-13 17:56:20 +00:00
if [ $theme_project_dir_length - eq 0 ]
echo -n $project_dir
return
end
2016-12-30 00:12:55 +00:00
2019-01-13 17:56:20 +00:00
string replace -ar '(\.?[^/]{' " $theme_project_dir_length " '})[^/]*/' '$1/' $project_dir
2013-09-18 06:17:15 +00:00
end
2016-01-25 15:06:48 +00:00
function __bobthefish_git_ahead -S -d 'Print the ahead/behind state for the current branch'
2019-01-13 17:56:20 +00:00
if [ " $theme_display_git_ahead_verbose " = 'yes' ]
__bobthefish_git_ahead_verbose
return
end
set -l ahead 0
set -l behind 0
for line in ( command git rev-list --left-right '@{upstream}...HEAD' 2 > /dev/null)
switch " $line "
case '>*'
if [ $behind - eq 1 ]
echo '±'
return
end
set ahead 1
case '<*'
if [ $ahead - eq 1 ]
echo " $git_plus_minus_glyph "
return
end
set behind 1
2017-01-30 15:33:52 +00:00
end
end
2019-01-13 17:56:20 +00:00
if [ $ahead - eq 1 ]
echo " $git_plus_glyph "
else if [ $behind - eq 1 ]
echo " $git_minus_glyph "
end
2015-06-24 21:50:28 +00:00
end
2016-01-25 15:06:48 +00:00
function __bobthefish_git_ahead_verbose -S -d 'Print a more verbose ahead/behind state for the current branch'
2019-01-13 17:56:20 +00:00
set -l commits ( command git rev-list --left-right '@{upstream}...HEAD' 2 > /dev/null)
2018-02-21 06:30:19 +00:00
or return
2015-06-24 21:50:28 +00:00
2019-01-13 17:56:20 +00:00
set -l behind ( count ( for arg in $commits ; echo $arg ; end | command grep '^<' ) )
set -l ahead ( count ( for arg in $commits ; echo $arg ; end | command grep -v '^<' ) )
switch " $ahead $behind "
case '' # no upstream
case '0 0' # equal to upstream
return
case '* 0' # ahead of upstream
echo " $git_ahead_glyph $ahead "
case '0 *' # behind upstream
echo " $git_behind_glyph $behind "
case '*' # diverged from upstream
echo " $git_ahead_glyph $ahead $git_behind_glyph $behind "
end
2015-06-24 21:50:28 +00:00
end
2013-09-18 06:17:15 +00:00
2018-02-21 06:25:19 +00:00
function __bobthefish_git_dirty_verbose -S -d 'Print a more verbose dirty state for the current working tree'
2019-01-13 17:56:20 +00:00
set -l changes ( command git diff --numstat | awk '{ added += $1; removed += $2 } END { print "+" added "/-" removed }' )
2018-02-21 06:30:19 +00:00
or return
2018-02-21 06:25:19 +00:00
2019-01-13 17:56:20 +00:00
echo " $changes " | string replace -r '(\+0/(-0)?|/-0)' ''
2018-02-21 06:25:19 +00:00
end
2017-12-19 16:32:59 +00:00
2019-03-16 22:33:12 +00:00
function __bobthefish_git_stashed -S -d 'Print the stashed state for the current branch'
if [ " $theme_display_git_stashed_verbose " = 'yes' ]
set -l stashed ( command git rev-list --walk-reflogs --count refs/stash 2 > /dev/null)
or return
echo -n " $git_stashed_glyph $stashed "
else
2019-03-16 22:35:38 +00:00
command git rev-parse --verify --quiet refs/stash > /dev/null
and echo -n " $git_stashed_glyph "
2019-03-16 22:33:12 +00:00
end
end
2017-12-19 16:32:59 +00:00
# ==============================
2013-09-18 06:17:15 +00:00
# Segment functions
2017-12-19 16:32:59 +00:00
# ==============================
2013-09-18 06:17:15 +00:00
2016-01-25 15:06:48 +00:00
function __bobthefish_start_segment -S -d 'Start a prompt segment'
2019-01-13 17:56:20 +00:00
set -l bg $argv [ 1 ]
set -e argv [ 1 ]
set -l fg $argv [ 1 ]
set -e argv [ 1 ]
set_color normal # clear out anything bold or underline...
set_color -b $bg $fg $argv
switch " $__bobthefish_current_bg "
case ''
# If there's no background, just start one
echo -n ' '
case " $bg "
# If the background is already the same color, draw a separator
echo -ns $right_arrow_glyph ' '
case '*'
# otherwise, draw the end of the previous segment and the start of the next
set_color $__bobthefish_current_bg
echo -ns $right_black_arrow_glyph ' '
set_color $fg $argv
end
set __bobthefish_current_bg $bg
2013-09-18 06:17:15 +00:00
end
2019-01-13 18:02:32 +00:00
function __bobthefish_path_segment -S -a segment_dir -d 'Display a shortened form of a directory'
2019-01-13 17:56:20 +00:00
set -l segment_color $color_path
set -l segment_basename_color $color_path_basename
2016-03-30 20:24:51 +00:00
2019-01-13 18:02:32 +00:00
if not [ - w " $segment_dir " ]
2019-01-13 17:56:20 +00:00
set segment_color $color_path_nowrite
set segment_basename_color $color_path_nowrite_basename
end
2013-09-18 06:17:15 +00:00
2019-01-13 17:56:20 +00:00
__bobthefish_start_segment $segment_color
2016-03-30 20:24:51 +00:00
2019-01-13 17:56:20 +00:00
set -l directory
set -l parent
2013-09-18 06:17:15 +00:00
2019-01-13 18:02:32 +00:00
switch " $segment_dir "
2019-01-13 17:56:20 +00:00
case /
set directory '/'
case " $HOME "
set directory '~'
case '*'
2019-01-13 18:02:32 +00:00
set parent ( __bobthefish_pretty_parent " $segment_dir " )
set directory ( __bobthefish_basename " $segment_dir " )
2019-01-13 17:56:20 +00:00
end
2013-09-18 06:17:15 +00:00
2019-01-13 17:56:20 +00:00
echo -n $parent
set_color -b $segment_basename_color
echo -ns $directory ' '
2013-09-18 06:17:15 +00:00
end
2016-01-25 15:06:48 +00:00
function __bobthefish_finish_segments -S -d 'Close open prompt segments'
2019-01-13 17:56:20 +00:00
if [ - n " $__bobthefish_current_bg " ]
set_color normal
set_color $__bobthefish_current_bg
echo -ns $right_black_arrow_glyph ' '
2017-06-11 02:51:14 +00:00
end
2016-02-04 07:10:57 +00:00
2019-01-13 17:56:20 +00:00
if [ " $theme_newline_cursor " = 'yes' ]
echo -ens "\n"
set_color $fish_color_autosuggestion
2019-03-26 15:13:33 +00:00
if set -q theme_newline_prompt
echo -ens " $theme_newline_prompt "
2021-01-24 22:25:02 +00:00
else if [ " $theme_powerline_fonts " = 'no' - a " $theme_nerd_fonts " != 'yes' ]
2019-03-26 15:13:33 +00:00
echo -ns '> '
2019-01-13 17:56:20 +00:00
else
2019-03-26 15:13:33 +00:00
echo -ns " $right_arrow_glyph "
2019-01-13 17:56:20 +00:00
end
else if [ " $theme_newline_cursor " = 'clean' ]
echo -ens "\n"
end
set_color normal
set __bobthefish_current_bg
2013-09-18 06:17:15 +00:00
end
2017-12-19 16:32:59 +00:00
# ==============================
2020-04-20 16:57:15 +00:00
# Status segment
2017-12-19 16:32:59 +00:00
# ==============================
2020-08-28 14:00:15 +00:00
function __bobthefish_prompt_status -S -a last_status -d 'Display flags for a non-zero exit status, private mode, root user, and background jobs'
2019-01-13 17:56:20 +00:00
set -l nonzero
set -l superuser
set -l bg_jobs
2017-12-19 16:32:59 +00:00
2019-01-13 17:56:20 +00:00
# Last exit was nonzero
[ $last_status - ne 0 ]
2018-02-21 06:20:50 +00:00
and set nonzero 1
2017-12-19 16:32:59 +00:00
2019-01-13 17:56:20 +00:00
# If superuser (uid == 0)
#
# Note that iff the current user is root and '/' is not writeable by root this
# will be wrong. But I can't think of a single reason that would happen, and
# it is literally 99.5% faster to check it this way, so that's a tradeoff I'm
# willing to make.
2019-10-27 04:01:54 +00:00
[ - w / - o - w /private/ ]
2017-12-23 23:15:59 +00:00
and [ ( id - u) - eq 0 ]
2018-02-21 06:20:50 +00:00
and set superuser 1
2017-12-19 16:32:59 +00:00
2019-01-13 17:56:20 +00:00
# Jobs display
2019-11-02 22:48:16 +00:00
if set -q AUTOJUMP_SOURCED
# Autojump special case: check if there are jobs besides the `autojump`
# job, since that one is (briefly) backgrounded every time we `cd`
set bg_jobs ( jobs -c | string match -v --regex '(Command|autojump)' | wc -l )
2019-10-11 14:56:47 +00:00
[ " $bg_jobs " - eq 0 ]
and set bg_jobs # clear it out so it doesn't show when `0`
else
2019-11-02 22:48:16 +00:00
if [ " $theme_display_jobs_verbose " = 'yes' ]
set bg_jobs ( jobs -p | wc -l )
[ " $bg_jobs " - eq 0 ]
and set bg_jobs # clear it out so it doesn't show when `0`
else
# `jobs -p` is faster if we redirect to /dev/null, because it exits
# after the first match. We'll use that unless the user wants to
# display the actual job count
jobs -p > /dev/null
and set bg_jobs 1
end
2019-10-11 14:56:47 +00:00
end
2017-12-19 16:32:59 +00:00
2020-08-28 14:00:15 +00:00
if [ " $nonzero " - o " $fish_private_mode " - o " $superuser " - o " $bg_jobs " ]
2019-01-13 17:56:20 +00:00
__bobthefish_start_segment $color_initial_segment_exit
if [ " $nonzero " ]
set_color normal
set_color -b $color_initial_segment_exit
if [ " $theme_show_exit_status " = 'yes' ]
echo -ns $last_status ' '
else
echo -n $nonzero_exit_glyph
end
end
2017-12-19 16:32:59 +00:00
2020-08-28 14:00:15 +00:00
if [ " $fish_private_mode " ]
set_color normal
set_color -b $color_initial_segment_private
echo -n $private_glyph
end
2019-01-13 17:56:20 +00:00
if [ " $superuser " ]
set_color normal
if [ - z " $FAKEROOTKEY " ]
set_color -b $color_initial_segment_su
else
set_color -b $color_initial_segment_exit
end
2017-12-19 16:32:59 +00:00
2019-01-13 17:56:20 +00:00
echo -n $superuser_glyph
end
2017-12-19 16:32:59 +00:00
2019-01-13 17:56:20 +00:00
if [ " $bg_jobs " ]
set_color normal
set_color -b $color_initial_segment_jobs
2019-10-11 14:51:50 +00:00
if [ " $theme_display_jobs_verbose " = 'yes' ]
2019-10-10 20:12:47 +00:00
echo -ns $bg_job_glyph $bg_jobs ' '
else
echo -n $bg_job_glyph
end
2019-01-13 17:56:20 +00:00
end
2017-12-19 16:32:59 +00:00
end
end
# ==============================
# Container and VM segments
# ==============================
2013-09-18 06:17:15 +00:00
2016-01-25 15:06:48 +00:00
function __bobthefish_prompt_vagrant -S -d 'Display Vagrant status'
2019-01-13 17:56:20 +00:00
[ " $theme_display_vagrant " = 'yes' - a - f Vagrantfile ]
or return
2016-08-25 19:18:10 +00:00
2019-01-13 17:56:20 +00:00
# .vagrant/machines/$machine/$provider/id
for file in .vagrant/machines/*/*/id
read -l id < " $file "
if [ - n " $id " ]
switch " $file "
case '*/virtualbox/id'
__bobthefish_prompt_vagrant_vbox $id
case '*/vmware_fusion/id'
__bobthefish_prompt_vagrant_vmware $id
case '*/parallels/id'
__bobthefish_prompt_vagrant_parallels $id
end
end
2016-08-22 19:35:20 +00:00
end
2016-02-19 07:14:13 +00:00
end
2016-08-22 19:35:20 +00:00
function __bobthefish_prompt_vagrant_vbox -S -a id -d 'Display VirtualBox Vagrant status'
2019-01-13 17:56:20 +00:00
set -l vagrant_status
set -l vm_status ( VBoxManage showvminfo --machinereadable $id 2 > /dev/null | command grep 'VMState=' | tr -d '"' | cut -d '=' -f 2 )
switch " $vm_status "
case 'running'
set vagrant_status " $vagrant_status $vagrant_running_glyph "
case 'poweroff'
set vagrant_status " $vagrant_status $vagrant_poweroff_glyph "
case 'aborted'
set vagrant_status " $vagrant_status $vagrant_aborted_glyph "
case 'saved'
set vagrant_status " $vagrant_status $vagrant_saved_glyph "
case 'stopping'
set vagrant_status " $vagrant_status $vagrant_stopping_glyph "
case ''
set vagrant_status " $vagrant_status $vagrant_unknown_glyph "
end
[ - z " $vagrant_status " ]
and return
__bobthefish_start_segment $color_vagrant
echo -ns $vagrant_status ' '
2016-02-19 07:14:13 +00:00
end
2016-08-22 19:35:20 +00:00
function __bobthefish_prompt_vagrant_vmware -S -a id -d 'Display VMWare Vagrant status'
2019-01-13 17:56:20 +00:00
set -l vagrant_status
if [ ( pgrep - f " $id " ) ]
set vagrant_status " $vagrant_status $vagrant_running_glyph "
else
set vagrant_status " $vagrant_status $vagrant_poweroff_glyph "
end
[ - z " $vagrant_status " ]
and return
2016-02-19 07:14:13 +00:00
2019-01-13 17:56:20 +00:00
__bobthefish_start_segment $color_vagrant
echo -ns $vagrant_status ' '
2016-08-21 19:11:35 +00:00
end
function __bobthefish_prompt_vagrant_parallels -S -d 'Display Parallels Vagrant status'
2019-01-13 17:56:20 +00:00
set -l vagrant_status
set -l vm_status ( prlctl list $id -o status 2 > /dev/null | command tail -1 )
switch " $vm_status "
case 'running'
set vagrant_status " $vagrant_status $vagrant_running_glyph "
case 'stopped'
set vagrant_status " $vagrant_status $vagrant_poweroff_glyph "
case 'paused'
set vagrant_status " $vagrant_status $vagrant_saved_glyph "
case 'suspended'
set vagrant_status " $vagrant_status $vagrant_saved_glyph "
case 'stopping'
set vagrant_status " $vagrant_status $vagrant_stopping_glyph "
case ''
set vagrant_status " $vagrant_status $vagrant_unknown_glyph "
end
[ - z " $vagrant_status " ]
and return
__bobthefish_start_segment $color_vagrant
echo -ns $vagrant_status ' '
2015-12-16 18:12:21 +00:00
end
2017-12-19 16:32:59 +00:00
function __bobthefish_prompt_docker -S -d 'Display Docker machine name'
2019-01-13 17:56:20 +00:00
[ " $theme_display_docker_machine " = 'no' - o - z " $DOCKER_MACHINE_NAME " ]
and return
__bobthefish_start_segment $color_vagrant
echo -ns $DOCKER_MACHINE_NAME ' '
2016-06-01 13:50:14 +00:00
end
2019-07-01 19:21:31 +00:00
function __bobthefish_k8s_context -S -d 'Get the current k8s context'
2019-01-13 17:56:20 +00:00
set -l config_paths " $HOME /.kube/config "
[ - n " $KUBECONFIG " ]
2017-12-23 13:06:32 +00:00
and set config_paths ( string split ':' " $KUBECONFIG " ) $config_paths
2019-01-13 17:56:20 +00:00
for file in $config_paths
[ - f " $file " ]
or continue
while read -l key val
if [ " $key " = 'current-context:' ]
set -l context ( string trim -c '"\' ' -- $val )
[ - z " $context " ]
2019-07-01 19:21:31 +00:00
and return 1
2019-01-13 17:56:20 +00:00
2019-07-01 19:21:31 +00:00
echo $context
2019-01-13 17:56:20 +00:00
return
end
end < $file
end
2019-07-01 19:21:31 +00:00
return 1
end
function __bobthefish_k8s_namespace -S -d 'Get the current k8s namespace'
kubectl config view --minify --output "jsonpath={..namespace}"
end
function __bobthefish_prompt_k8s_context -S -d 'Show current Kubernetes context'
[ " $theme_display_k8s_context " = 'yes' ]
or return
set -l context ( __bobthefish_k8s_context )
or return
2020-02-29 17:39:32 +00:00
[ " $theme_display_k8s_namespace " = 'yes' ]
and set -l namespace ( __bobthefish_k8s_namespace )
2019-07-01 19:21:31 +00:00
2023-05-08 02:42:24 +00:00
[ - z " $context " - o " $context " = 'default' ]
and [ - z " $namespace " - o " $namespace " = 'default' ]
2020-05-04 13:48:01 +00:00
and return
2023-03-15 17:12:26 +00:00
set -l segment $k8s_glyph ' '
[ " $context " != 'default' ]
and set segment $segment $context
[ " $namespace " != 'default' ]
2021-01-24 22:25:02 +00:00
and set segment $segment ':' $namespace
2019-07-01 19:21:31 +00:00
__bobthefish_start_segment $color_k8s
2021-01-24 22:25:02 +00:00
echo -ns $segment ' '
2017-08-08 07:46:20 +00:00
end
2013-09-18 06:17:15 +00:00
2020-09-08 03:06:39 +00:00
# ==============================
# Cloud Tools
# ==============================
function __bobthefish_prompt_aws_vault_profile -S -d 'Show AWS Vault profile'
[ " $theme_display_aws_vault_profile " = 'yes' ]
or return
[ - n " $AWS_VAULT " - a - n " $AWS_SESSION_EXPIRATION " ]
or return
set -l profile $AWS_VAULT
set -l now ( date --utc +%s)
set -l expiry ( date -d " $AWS_SESSION_EXPIRATION " +%s)
set -l diff_mins ( math " floor(( $expiry - $now ) / 60) " )
2020-09-09 03:57:13 +00:00
set -l diff_time $diff_mins "m"
[ $diff_mins - le 0 ]
2021-01-24 22:25:02 +00:00
and set -l diff_time '0m'
2020-09-09 03:57:13 +00:00
[ $diff_mins - ge 60 ]
and set -l diff_time ( math " floor( $diff_mins / 60) " ) "h" ( math " $diff_mins % 60 " ) "m"
2021-01-24 22:25:02 +00:00
set -l segment $profile ' (' $diff_time ')'
2020-09-09 04:18:53 +00:00
set -l status_color $color_aws_vault
[ $diff_mins - le 0 ]
and set -l status_color $color_aws_vault_expired
2020-09-08 03:06:39 +00:00
2020-09-09 04:18:53 +00:00
__bobthefish_start_segment $status_color
2021-01-24 22:25:02 +00:00
echo -ns $segment ' '
2020-09-08 03:06:39 +00:00
end
2017-12-19 16:32:59 +00:00
# ==============================
# User / hostname info segments
# ==============================
2013-09-18 06:17:15 +00:00
2018-05-05 12:13:59 +00:00
# Polyfill for fish < 2.5.0
if not type -q prompt_hostname
2019-01-13 17:56:20 +00:00
if not set -q __bobthefish_prompt_hostname
2021-11-05 14:16:55 +00:00
set -g __bobthefish_prompt_hostname ( uname -n | string replace -r '\..*' '' )
2019-01-13 17:56:20 +00:00
end
2018-05-05 12:13:59 +00:00
2019-01-13 17:56:20 +00:00
function prompt_hostname
echo $__bobthefish_prompt_hostname
end
2018-05-05 12:13:59 +00:00
end
2017-12-19 16:32:59 +00:00
function __bobthefish_prompt_user -S -d 'Display current user and hostname'
2019-10-21 16:51:56 +00:00
[ " $theme_display_user " = 'yes' - o \( " $theme_display_user " != 'no' - a - n " $SSH_CLIENT " \) - o \( - n " $default_user " - a " $USER " != " $default_user " \) ]
2017-12-19 16:08:05 +00:00
and set -l display_user
2019-10-21 16:51:56 +00:00
[ " $theme_display_sudo_user " = 'yes' - a - n " $SUDO_USER " ]
and set -l display_sudo_user
2019-01-13 17:56:20 +00:00
[ " $theme_display_hostname " = 'yes' - o \( " $theme_display_hostname " != 'no' - a - n " $SSH_CLIENT " \) ]
and set -l display_hostname
2017-12-19 15:38:15 +00:00
2017-12-19 16:08:05 +00:00
if set -q display_user
2019-01-13 17:56:20 +00:00
__bobthefish_start_segment $color_username
echo -ns ( whoami )
end
2019-10-21 16:51:56 +00:00
if set -q display_sudo_user
2019-01-13 17:56:20 +00:00
if set -q display_user
2019-10-21 16:51:56 +00:00
echo -ns ' '
else
__bobthefish_start_segment $color_username
end
echo -ns " ( $SUDO_USER ) "
end
2019-01-13 17:56:20 +00:00
if set -q display_hostname
2019-11-02 22:48:16 +00:00
if set -q display_user
or set -q display_sudo_user
2019-01-13 17:56:20 +00:00
# reset colors without starting a new segment...
# (so we can have a bold username and non-bold hostname)
set_color normal
set_color -b $color_hostname [ 1 ] $color_hostname [ 2 .. - 1 ]
echo -ns '@' ( prompt_hostname )
else
__bobthefish_start_segment $color_hostname
echo -ns ( prompt_hostname )
end
2017-12-19 16:08:05 +00:00
end
2017-12-19 15:38:15 +00:00
2019-01-13 17:56:20 +00:00
set -q display_user
2019-10-27 09:20:59 +00:00
or set -q display_sudo_user
2018-01-03 21:23:57 +00:00
or set -q display_hostname
2017-12-19 16:08:05 +00:00
and echo -ns ' '
2013-09-18 06:17:15 +00:00
end
2017-12-19 16:32:59 +00:00
# ==============================
# Virtual environment segments
# ==============================
2019-03-18 14:43:38 +00:00
function __bobthefish_rvm_parse_ruby -S -a ruby_string -a scope -d 'Parse RVM Ruby string'
2019-01-13 17:56:20 +00:00
# Function arguments:
# - 'ruby-2.2.3@rails', 'jruby-1.7.19'...
# - 'default' or 'current'
set -l IFS @
echo " $ruby_string " | read __ruby __rvm_{ $scope } _ruby_gemset __
set IFS -
echo " $__ruby " | read __rvm_{ $scope } _ruby_interpreter __rvm_{ $scope } _ruby_version __
set -e __ruby
set -e __
2017-12-19 16:32:59 +00:00
end
function __bobthefish_rvm_info -S -d 'Current Ruby information from RVM'
2019-01-13 17:56:20 +00:00
# look for rvm install path
set -q rvm_path
2018-03-23 06:01:39 +00:00
or set -l rvm_path ~/.rvm /usr/local/rvm
2018-03-23 06:02:51 +00:00
2019-01-13 17:56:20 +00:00
# More `sed`/`grep`/`cut` magic...
set -l __rvm_default_ruby ( grep GEM_HOME $rvm_path /environments/default 2 > /dev/null | sed -e "s/'//g" | sed -e 's/.*\///' )
set -l __rvm_current_ruby ( rvm-prompt i v g)
[ " $__rvm_default_ruby " = " $__rvm_current_ruby " ]
and return
set -l __rvm_default_ruby_gemset
set -l __rvm_default_ruby_interpreter
set -l __rvm_default_ruby_version
set -l __rvm_current_ruby_gemset
set -l __rvm_current_ruby_interpreter
set -l __rvm_current_ruby_version
# Parse default and current Rubies to global variables
__bobthefish_rvm_parse_ruby $__rvm_default_ruby default
__bobthefish_rvm_parse_ruby $__rvm_current_ruby current
# Show unobtrusive RVM prompt
# If interpreter differs form default interpreter, show everything:
if [ " $__rvm_default_ruby_interpreter " != " $__rvm_current_ruby_interpreter " ]
if [ " $__rvm_current_ruby_gemset " = 'global' ]
rvm-prompt i v
else
rvm-prompt i v g
end
# If version differs form default version
else if [ " $__rvm_default_ruby_version " != " $__rvm_current_ruby_version " ]
if [ " $__rvm_current_ruby_gemset " = 'global' ]
rvm-prompt v
else
rvm-prompt v g
end
# If gemset differs form default or 'global' gemset, just show it
else if [ " $__rvm_default_ruby_gemset " != " $__rvm_current_ruby_gemset " ]
rvm-prompt g
2017-12-19 16:32:59 +00:00
end
end
function __bobthefish_prompt_rubies -S -d 'Display current Ruby information'
2019-01-13 17:56:20 +00:00
[ " $theme_display_ruby " = 'no' ]
and return
2017-12-19 16:32:59 +00:00
2019-01-13 17:56:20 +00:00
set -l ruby_version
if type -fq rvm-prompt
set ruby_version ( __bobthefish_rvm_info )
else if type -fq rbenv
set ruby_version ( rbenv version-name)
# Don't show global ruby version...
set -q RBENV_ROOT
or set -l RBENV_ROOT $HOME /.rbenv
[ - e " $RBENV_ROOT /version " ]
and read -l global_ruby_version < " $RBENV_ROOT /version "
[ " $global_ruby_version " ]
or set -l global_ruby_version system
[ " $ruby_version " = " $global_ruby_version " ]
and return
else if type -q chruby # chruby is implemented as a function, so omitting the -f is intentional
set ruby_version $RUBY_VERSION
else if type -fq asdf
2020-05-02 15:34:23 +00:00
set -l asdf_current_ruby ( asdf current ruby 2 > /dev/null)
2019-01-13 17:56:20 +00:00
or return
2022-04-05 17:16:16 +00:00
echo " $asdf_current_ruby " | read -l _asdf_plugin asdf_ruby_version asdf_provenance
2020-05-02 15:34:23 +00:00
2019-01-13 17:56:20 +00:00
# If asdf changes their ruby version provenance format, update this to match
2022-04-05 17:16:16 +00:00
[ ( string trim - - " $asdf_provenance " ) = " $HOME /.tool-versions " ]
2019-01-13 17:56:20 +00:00
and return
set ruby_version $asdf_ruby_version
end
2017-12-21 19:06:06 +00:00
2019-01-13 17:56:20 +00:00
[ - z " $ruby_version " ]
and return
2017-12-24 19:28:38 +00:00
2019-01-13 17:56:20 +00:00
__bobthefish_start_segment $color_rvm
echo -ns $ruby_glyph $ruby_version ' '
2017-12-19 16:32:59 +00:00
end
function __bobthefish_virtualenv_python_version -S -d 'Get current Python version'
2019-01-13 17:56:20 +00:00
switch ( python --version 2 > & 1 | tr '\n' ' ' )
case 'Python 2*PyPy*'
echo $pypy_glyph
case 'Python 3*PyPy*'
echo -s $pypy_glyph $superscript_glyph [ 3 ]
case 'Python 2*'
echo $superscript_glyph [ 2 ]
case 'Python 3*'
echo $superscript_glyph [ 3 ]
end
2017-12-19 16:32:59 +00:00
end
2018-06-02 08:27:26 +00:00
function __bobthefish_prompt_virtualfish -S -d "Display current Python virtual environment (only for virtualfish, virtualenv's activate.fish changes prompt by itself) or conda environment."
2019-01-13 17:56:20 +00:00
[ " $theme_display_virtualenv " = 'no' - o - z " $VIRTUAL_ENV " - a - z " $CONDA_DEFAULT_ENV " ]
and return
set -l version_glyph ( __bobthefish_virtualenv_python_version )
if [ " $version_glyph " ]
__bobthefish_start_segment $color_virtualfish
echo -ns $virtualenv_glyph $version_glyph ' '
end
if [ " $VIRTUAL_ENV " ]
echo -ns ( basename " $VIRTUAL_ENV " ) ' '
else if [ " $CONDA_DEFAULT_ENV " ]
echo -ns ( basename " $CONDA_DEFAULT_ENV " ) ' '
end
2017-12-19 16:32:59 +00:00
end
function __bobthefish_prompt_virtualgo -S -d 'Display current Go virtual environment'
2019-01-13 17:56:20 +00:00
[ " $theme_display_virtualgo " = 'no' - o - z " $VIRTUALGO " ]
and return
__bobthefish_start_segment $color_virtualgo
echo -ns $go_glyph ' ' ( basename " $VIRTUALGO " ) ' '
set_color normal
2017-12-19 16:32:59 +00:00
end
2018-02-16 14:18:48 +00:00
function __bobthefish_prompt_desk -S -d 'Display current desk environment'
2019-01-13 17:56:20 +00:00
[ " $theme_display_desk " = 'no' - o - z " $DESK_ENV " ]
and return
__bobthefish_start_segment $color_desk
2021-01-24 22:25:02 +00:00
echo -ns $desk_glyph ' ' ( basename -a -s '.fish' " $DESK_ENV " ) ' '
2019-01-13 17:56:20 +00:00
set_color normal
2018-02-16 14:18:48 +00:00
end
2022-02-03 07:15:51 +00:00
function __bobthefish_prompt_find_file_up -S -d 'Find file(s), going up the parent directories'
set -l dir " $argv [1] "
2022-08-02 03:41:04 +00:00
set -l files $argv [ 2 .. - 1 ]
2022-02-03 07:15:51 +00:00
if test -z " $dir "
or test -z " $files "
return 1
end
while [ " $dir " ]
for f in $files
if [ - e " $dir / $f " ]
return
end
end
[ " $dir " = '/' ]
and return 1
set dir ( __bobthefish_dirname " $dir " )
end
return 1
end
2021-01-24 22:14:30 +00:00
function __bobthefish_prompt_node -S -d 'Display current node version'
2022-02-03 07:15:51 +00:00
set -l should_show
if [ " $theme_display_node " = 'always' - o " $theme_display_nvm " = 'yes' ]
set should_show 1
else if [ " $theme_display_node " = 'yes' ]
__bobthefish_prompt_find_file_up " $PWD " package.json .nvmrc .node-version
and set should_show 1
end
[ - z " $should_show " ]
and return
2019-07-01 14:40:53 +00:00
2021-01-24 22:14:30 +00:00
set -l node_manager
set -l node_manager_dir
2021-01-28 00:59:31 +00:00
if type -q nvm
2021-01-24 22:25:02 +00:00
set node_manager 'nvm'
2021-01-24 22:14:30 +00:00
set node_manager_dir $NVM_DIR
else if type -fq fnm
2021-01-24 22:25:02 +00:00
set node_manager 'fnm'
2021-01-24 22:14:30 +00:00
set node_manager_dir $FNM_DIR
end
[ - n " $node_manager_dir " ]
or return
set -l node_version ( " $node_manager " current 2 > /dev/null)
2019-07-01 14:40:53 +00:00
[ - z $node_version - o " $node_version " = 'none' - o " $node_version " = 'system' ]
and return
2021-01-24 22:14:30 +00:00
[ - n " $color_nvm " ]
2021-01-24 22:25:02 +00:00
and set -x color_node $color_nvm
2021-01-24 22:14:30 +00:00
__bobthefish_start_segment $color_node
2019-07-01 14:40:53 +00:00
echo -ns $node_glyph $node_version ' '
set_color normal
end
2019-11-06 17:41:03 +00:00
function __bobthefish_prompt_nix -S -d 'Display current nix environment'
[ " $theme_display_nix " = 'no' - o - z " $IN_NIX_SHELL " ]
and return
__bobthefish_start_segment $color_nix
echo -ns $nix_glyph $IN_NIX_SHELL ' '
set_color normal
end
2017-12-19 16:32:59 +00:00
# ==============================
# VCS segments
# ==============================
2019-03-18 14:43:13 +00:00
function __bobthefish_prompt_hg -S -a hg_root_dir -a real_pwd -d 'Display the actual hg state'
2019-01-13 17:56:20 +00:00
set -l dirty ( command hg stat; or echo -n '*' )
2014-11-16 10:47:15 +00:00
2019-01-13 17:56:20 +00:00
set -l flags " $dirty "
[ " $flags " ]
2021-01-24 22:25:02 +00:00
and set flags ''
2014-11-16 10:47:15 +00:00
2019-01-13 17:56:20 +00:00
set -l flag_colors $color_repo
if [ " $dirty " ]
set flag_colors $color_repo_dirty
end
2014-11-16 10:47:15 +00:00
2019-01-13 18:02:32 +00:00
__bobthefish_path_segment $hg_root_dir
2014-11-16 10:47:15 +00:00
2019-01-13 17:56:20 +00:00
__bobthefish_start_segment $flag_colors
echo -ns $hg_glyph ' '
2014-11-18 02:40:30 +00:00
2019-01-13 17:56:20 +00:00
__bobthefish_start_segment $flag_colors
echo -ns ( __bobthefish_hg_branch ) $flags ' '
set_color normal
2014-11-16 10:47:15 +00:00
2019-03-18 14:43:13 +00:00
set -l project_pwd ( __bobthefish_project_pwd $hg_root_dir $real_pwd )
2019-01-13 17:56:20 +00:00
if [ " $project_pwd " ]
2019-03-18 14:43:13 +00:00
if [ - w " $real_pwd " ]
2019-01-13 17:56:20 +00:00
__bobthefish_start_segment $color_path
else
__bobthefish_start_segment $color_path_nowrite
end
2014-11-16 10:47:15 +00:00
2019-01-13 17:56:20 +00:00
echo -ns $project_pwd ' '
end
2014-11-16 10:47:15 +00:00
end
2019-03-18 14:43:13 +00:00
function __bobthefish_prompt_git -S -a git_root_dir -a real_pwd -d 'Display the actual git state'
2019-01-13 17:56:20 +00:00
set -l dirty ''
if [ " $theme_display_git_dirty " != 'no' ]
set -l show_dirty ( command git config --bool bash.showDirtyState 2 > /dev/null)
if [ " $show_dirty " != 'false' ]
set dirty ( command git diff --no-ext-diff --quiet --exit-code 2 > /dev/null; or echo -n " $git_dirty_glyph " )
if [ " $dirty " - a " $theme_display_git_dirty_verbose " = 'yes' ]
set dirty " $dirty " ( __bobthefish_git_dirty_verbose )
end
end
end
set -l staged ( command git diff --cached --no-ext-diff --quiet --exit-code 2 > /dev/null; or echo -n " $git_staged_glyph " )
2019-03-16 22:33:12 +00:00
set -l stashed ( __bobthefish_git_stashed )
2019-01-13 17:56:20 +00:00
set -l ahead ( __bobthefish_git_ahead )
set -l new ''
if [ " $theme_display_git_untracked " != 'no' ]
set -l show_untracked ( command git config --bool bash.showUntrackedFiles 2 > /dev/null)
if [ " $show_untracked " != 'false' ]
set new ( command git ls-files --other --exclude-standard --directory --no-empty-directory 2 > /dev/null)
if [ " $new " ]
set new " $git_untracked_glyph "
end
end
end
set -l flags " $dirty $staged $stashed $ahead $new "
[ " $flags " ]
2016-03-30 06:28:25 +00:00
and set flags " $flags "
2013-09-18 06:17:15 +00:00
2019-01-13 17:56:20 +00:00
set -l flag_colors $color_repo
if [ " $dirty " ]
set flag_colors $color_repo_dirty
else if [ " $staged " ]
set flag_colors $color_repo_staged
end
2015-06-24 21:50:28 +00:00
2019-01-13 18:02:32 +00:00
__bobthefish_path_segment $git_root_dir
2013-09-18 06:17:15 +00:00
2019-01-13 17:56:20 +00:00
__bobthefish_start_segment $flag_colors
echo -ns ( __bobthefish_git_branch ) $flags ' '
set_color normal
2013-09-18 06:17:15 +00:00
2019-01-13 17:56:20 +00:00
if [ " $theme_git_worktree_support " != 'yes' ]
2019-03-18 14:43:13 +00:00
set -l project_pwd ( __bobthefish_project_pwd $git_root_dir $real_pwd )
2019-01-13 17:56:20 +00:00
if [ " $project_pwd " ]
2019-03-18 14:43:13 +00:00
if [ - w " $real_pwd " ]
2019-01-13 17:56:20 +00:00
__bobthefish_start_segment $color_path
else
__bobthefish_start_segment $color_path_nowrite
end
2016-03-30 23:57:34 +00:00
2019-01-13 17:56:20 +00:00
echo -ns $project_pwd ' '
end
return
2016-03-30 23:57:34 +00:00
end
2019-01-13 17:56:20 +00:00
set -l project_pwd ( command git rev-parse --show-prefix 2 > /dev/null | string trim --right --chars = /)
set -l work_dir ( command git rev-parse --show-toplevel 2 > /dev/null)
2016-03-30 23:57:34 +00:00
2019-01-13 17:56:20 +00:00
# only show work dir if it's a parent…
if [ " $work_dir " ]
2019-03-18 14:43:13 +00:00
switch $real_pwd /
2019-01-13 17:56:20 +00:00
case $work_dir /\*
2019-01-13 18:02:32 +00:00
string match " $git_root_dir * " $work_dir > /dev/null
and set work_dir ( string sub -s ( math 1 + ( string length $git_root_dir ) ) $work_dir )
2019-01-13 17:56:20 +00:00
case \*
set -e work_dir
end
2016-03-30 23:57:34 +00:00
end
2019-01-13 17:56:20 +00:00
if [ " $project_pwd " - o " $work_dir " ]
set -l colors $color_path
2019-03-18 14:43:13 +00:00
if not [ - w " $real_pwd " ]
2019-01-13 17:56:20 +00:00
set colors $color_path_nowrite
end
2016-03-30 23:57:34 +00:00
2019-01-13 17:56:20 +00:00
__bobthefish_start_segment $colors
2016-03-30 23:57:34 +00:00
2019-01-13 17:56:20 +00:00
# handle work_dir != project dir
if [ " $work_dir " ]
set -l work_parent ( __bobthefish_dirname $work_dir )
if [ " $work_parent " ]
echo -n " $work_parent / "
end
2017-01-30 04:02:01 +00:00
2019-01-13 17:56:20 +00:00
set_color normal
set_color -b $color_repo_work_tree
echo -n ( __bobthefish_basename $work_dir )
set_color normal
set_color -b $colors
[ " $project_pwd " ]
and echo -n '/'
end
echo -ns $project_pwd ' '
else
2019-03-18 14:43:13 +00:00
set project_pwd $real_pwd
2019-01-13 17:56:20 +00:00
2019-01-13 18:02:32 +00:00
string match " $git_root_dir * " $project_pwd > /dev/null
and set project_pwd ( string sub -s ( math 1 + ( string length $git_root_dir ) ) $project_pwd )
2019-01-13 17:56:20 +00:00
set project_pwd ( string trim --left --chars = / -- $project_pwd )
2016-03-30 23:57:34 +00:00
2019-01-13 17:56:20 +00:00
if [ " $project_pwd " ]
set -l colors $color_path
2019-03-18 14:43:13 +00:00
if not [ - w " $real_pwd " ]
2019-01-13 17:56:20 +00:00
set colors $color_path_nowrite
end
2016-03-30 23:57:34 +00:00
2019-01-13 17:56:20 +00:00
__bobthefish_start_segment $colors
echo -ns $project_pwd ' '
end
2016-03-30 23:57:34 +00:00
end
2013-09-18 06:17:15 +00:00
end
2019-03-18 14:43:13 +00:00
function __bobthefish_prompt_dir -S -a real_pwd -d 'Display a shortened form of the current directory'
__bobthefish_path_segment " $real_pwd "
2013-09-18 06:17:15 +00:00
end
2014-11-20 20:58:23 +00:00
2017-12-19 16:32:59 +00:00
# ==============================
2013-09-18 06:17:15 +00:00
# Apply theme
2017-12-19 16:32:59 +00:00
# ==============================
2013-09-18 06:17:15 +00:00
2013-10-16 01:41:19 +00:00
function fish_prompt -d 'bobthefish, a fish theme optimized for awesome'
2019-03-29 04:13:12 +00:00
# Save the last status for later (do this before anything else)
set -l last_status $status
2019-03-26 14:51:09 +00:00
# Use a simple prompt on dumb terminals.
2021-01-24 22:25:02 +00:00
if [ " $TERM " = 'dumb' ]
echo '> '
2019-03-26 14:51:09 +00:00
return
end
2019-01-13 17:56:20 +00:00
__bobthefish_glyphs
__bobthefish_colors $theme_color_scheme
2017-12-19 16:32:59 +00:00
2019-01-13 17:56:20 +00:00
type -q bobthefish_colors
and bobthefish_colors
2016-03-30 23:13:39 +00:00
2019-01-13 17:56:20 +00:00
# Start each line with a blank slate
set -l __bobthefish_current_bg
# Status flags and input mode
__bobthefish_prompt_status $last_status
2020-01-17 22:33:42 +00:00
# User / hostname info
__bobthefish_prompt_user
2019-01-13 17:56:20 +00:00
# Containers and VMs
__bobthefish_prompt_vagrant
__bobthefish_prompt_docker
__bobthefish_prompt_k8s_context
2020-09-08 03:06:39 +00:00
# Cloud Tools
__bobthefish_prompt_aws_vault_profile
2019-01-13 17:56:20 +00:00
# Virtual environments
2019-11-06 17:41:03 +00:00
__bobthefish_prompt_nix
2019-01-13 17:56:20 +00:00
__bobthefish_prompt_desk
__bobthefish_prompt_rubies
__bobthefish_prompt_virtualfish
__bobthefish_prompt_virtualgo
2021-01-24 22:14:30 +00:00
__bobthefish_prompt_node
2019-01-13 17:56:20 +00:00
2019-03-18 14:43:13 +00:00
set -l real_pwd ( __bobthefish_pwd )
2019-01-13 17:56:20 +00:00
# VCS
2019-03-18 14:43:13 +00:00
set -l git_root_dir ( __bobthefish_git_project_dir $real_pwd )
set -l hg_root_dir ( __bobthefish_hg_project_dir $real_pwd )
2019-01-13 17:56:20 +00:00
2019-01-13 18:02:32 +00:00
if [ " $git_root_dir " - a " $hg_root_dir " ]
2019-01-13 17:56:20 +00:00
# only show the closest parent
2019-01-13 18:02:32 +00:00
switch $git_root_dir
case $hg_root_dir \*
2019-03-18 14:43:13 +00:00
__bobthefish_prompt_git $git_root_dir $real_pwd
2019-01-13 17:56:20 +00:00
case \*
2019-03-18 14:43:13 +00:00
__bobthefish_prompt_hg $hg_root_dir $real_pwd
2019-01-13 17:56:20 +00:00
end
2019-01-13 18:02:32 +00:00
else if [ " $git_root_dir " ]
2019-03-18 14:43:13 +00:00
__bobthefish_prompt_git $git_root_dir $real_pwd
2019-01-13 18:02:32 +00:00
else if [ " $hg_root_dir " ]
2019-03-18 14:43:13 +00:00
__bobthefish_prompt_hg $hg_root_dir $real_pwd
2019-01-13 17:56:20 +00:00
else
2019-03-18 14:43:13 +00:00
__bobthefish_prompt_dir $real_pwd
2016-03-30 23:13:39 +00:00
end
2019-01-13 17:56:20 +00:00
__bobthefish_finish_segments
2013-09-18 06:17:15 +00:00
end