diff options
author | Karel Kočí <cynerd@email.cz> | 2018-01-26 15:02:07 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2018-01-26 15:26:36 +0100 |
commit | 47d3b6fc1966df43b37751165d6fa4229904c0fa (patch) | |
tree | cccb190aad69ed1afb93654922575a95e7745d03 /zshrc.d/title | |
download | shellrc-47d3b6fc1966df43b37751165d6fa4229904c0fa.tar.gz shellrc-47d3b6fc1966df43b37751165d6fa4229904c0fa.tar.bz2 shellrc-47d3b6fc1966df43b37751165d6fa4229904c0fa.zip |
Initial commitv0.1
Diffstat (limited to 'zshrc.d/title')
-rw-r--r-- | zshrc.d/title | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/zshrc.d/title b/zshrc.d/title new file mode 100644 index 0000000..18b19d1 --- /dev/null +++ b/zshrc.d/title @@ -0,0 +1,12 @@ +# vim: ft=zsh + +case "$TERM" in + xterm*|*rxvt*|*st*) + precmd() { + print -Pn "\e]0;%n@%m:%~ %(1j,%j job%(2j|s|) ,)\a" + } + preexec() { + print -Pn "\e]0;%n@%m:%~ !$1\a" + } + ;; +esac |