Compare commits

..

1 Commits

Author SHA1 Message Date
Robin-Charles GUIHENEUF
fce6915022 zsh: Add preexec hook to vulporuza theme 2020-09-06 11:57:06 +02:00

View File

@ -44,12 +44,7 @@ else
ZSH_THEME_GIT_PROMPT_BISECT="%{$fg_bold[magenta]%}|BISECT%{${reset_color}%} " ZSH_THEME_GIT_PROMPT_BISECT="%{$fg_bold[magenta]%}|BISECT%{${reset_color}%} "
fi fi
function theme_preexec { theme_preexec () {
print -nr $'\e]2;'"$USER@$(hostname) » $PWD » $2"$'\a' print -nr $'\e]2;'"$(hostname) » $2"$'\a'
} }
add-zsh-hook preexec theme_preexec add-zsh-hook preexec theme_preexec
function theme_precmd {
print -nr $'\e]2;'"$USER@$(hostname) » $PWD"$'\a'
}
add-zsh-hook precmd theme_precmd