diff options
author | June McEnroe <june@causal.agency> | 2013-11-18 14:54:26 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2013-11-18 14:54:26 -0500 |
commit | b0dd29ce0a7d09793456645e9319295002cc2b9d (patch) | |
tree | 0ea5030acbee612a92d3261365713264eed548b8 | |
parent | Remove useless syntastic option (diff) | |
download | src-b0dd29ce0a7d09793456645e9319295002cc2b9d.tar.gz src-b0dd29ce0a7d09793456645e9319295002cc2b9d.zip |
Only set title in xterm
Diffstat (limited to '')
-rw-r--r-- | .zsh/title.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.zsh/title.zsh b/.zsh/title.zsh index 0307b57c..7f4d1bac 100644 --- a/.zsh/title.zsh +++ b/.zsh/title.zsh @@ -1,5 +1,5 @@ function _title { - print -Pn "\033]0;$@\a" + [[ "$TERM" =~ "xterm" ]] && print -Pn "\033]0;$@\a" } function title { |