Last active
August 29, 2015 13:56
-
-
Save dethbunny/9202757 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cat .config/fish/functions/fish_prompt.fish | |
function fish_prompt --description 'Write out the prompt' | |
if test -z $WINDOW | |
printf '%s%s@%s%s%s%s%s> ' (set_color yellow) (whoami) (set_color purple) (hostname|cut -d . -f 1) (set_color $fish_color_cwd) (prompt_pwd) (set_color normal) | |
else | |
printf '%s%s@%s%s%s(%s)%s%s%s> ' (set_color yellow) (whoami) (set_color purple) (hostname|cut -d . -f 1) (set_color white) (echo $WINDOW) (set_color $fish_color_cwd) (prompt_pwd) (set_color normal) | |
end | |
# update the cwd to facilitate restore | |
# https://github.com/fish-shell/fish-shell/issues/87 | |
printf '\033]7;%s\07' (echo file://(hostname)$PWD |sed -e 's/ /%20/g') | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the
-s
flag tohostname
was preventing proper proxy icons from working with local shells, so I removed it.