diff options
author | June McEnroe <programble@gmail.com> | 2018-01-28 05:39:51 -0500 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2018-01-28 05:39:51 -0500 |
commit | 97386a4fe1ec67fe17eed8d7fa56efc08a1b67bd (patch) | |
tree | 2cbb90b25f7f3bdd3964d7a50fdc103017881b6d /home | |
parent | Clean up klon input (diff) | |
download | src-97386a4fe1ec67fe17eed8d7fa56efc08a1b67bd.tar.gz src-97386a4fe1ec67fe17eed8d7fa56efc08a1b67bd.zip |
Only set title in ~xterm
Diffstat (limited to 'home')
-rw-r--r-- | home/.zshrc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/home/.zshrc b/home/.zshrc index 13d82742..a5bcac77 100644 --- a/home/.zshrc +++ b/home/.zshrc @@ -57,7 +57,8 @@ PROMPT=" %(?.%F{white}$_prompt_ssh.%F{red})%#%f " RPROMPT='%F{white}%50<..<%~$(_prompt_git)%f' -_title() { print -Pn "\e]0;$1\a" } +_title() { } +[[ "$TERM" =~ "xterm" ]] && _title() { print -Pn "\e]0;$1\a" } _title_precmd() { _title '%1~' } _title_preexec() { psvar=("$1") _title '%1~: %1v' } precmd_functions=(_title_precmd) |