zsh: Add preexec & precmd hook to vulporuza theme

This commit is contained in:
Robin-Charles Guihéneuf 2020-09-12 23:51:30 +02:00
parent 56ba04b5b6
commit f447f5ea85

View File

@ -43,3 +43,13 @@ else
ZSH_THEME_GIT_PROMPT_REBASE="%{$fg_bold[magenta]%}|REBASE%{${reset_color}%} " ZSH_THEME_GIT_PROMPT_REBASE="%{$fg_bold[magenta]%}|REBASE%{${reset_color}%} "
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 {
print -nr $'\e]2;'"$USER@$(hostname) » $PWD » $1 $2"$'\a'
}
add-zsh-hook preexec theme_preexec
function theme_precmd {
print -nr $'\e]2;'"$USER@$(hostname) » $PWD"$'\a'
}
add-zsh-hook precmd theme_precmd