Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@u3u
Last active February 24, 2018 07:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save u3u/1c27ea5f43813b37510dcf0b35102e30 to your computer and use it in GitHub Desktop.
Save u3u/1c27ea5f43813b37510dcf0b35102e30 to your computer and use it in GitHub Desktop.
~/.config/fish/functions/fish_title.fish
function fish_title -d 'Use PROCESS $PWD format, replacing /Users/username with ~'
set realhome ~
if test "$_" != "fish"
echo $_ ''
else
echo ''
end
string replace -r '^'"$realhome"'($|/)' '~$1' $PWD
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment