X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/153355965a36f946106d15cde6fc375e87ed72c4..c20554a13a4689f821cf17bb78a422dbd6d9a050:/zsh/lib/title.zsh diff --git a/zsh/lib/title.zsh b/zsh/lib/title.zsh index 09c5947..c58da48 100644 --- a/zsh/lib/title.zsh +++ b/zsh/lib/title.zsh @@ -1,3 +1,7 @@ +if [[ "$TERM" == "linux" ]]; then + return +fi + function title { local tmp tmp=(${(f)*}) @@ -9,6 +13,10 @@ case "$TERM" in function title_precmd { title "${(%):-[%n@%m] %~}" } function title_preexec { title "$1" } ;; + (*) + function title_precmd {} + function title_preexec {} + ;; esac autoload -U add-zsh-hook