You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
429 B
21 lines
429 B
case "$TERM" in |
|
xterm*|rxvt*) |
|
preexec () { |
|
print -Pn "\e]0;%n@%m: $1\a" # xterm |
|
} |
|
precmd () { |
|
print -Pn "\e]0;%n@%m: %~\a" # xterm |
|
} |
|
;; |
|
screen*) |
|
preexec () { |
|
local CMD=${1[(wr)^(*=*|sudo|ssh|-*)]} |
|
echo -ne "\ek$CMD\e\\" |
|
print -Pn "\e]0;%n@%m: $1\a" # xterm |
|
} |
|
precmd () { |
|
echo -ne "\ekzsh\e\\" |
|
print -Pn "\e]0;%n@%m: %~\a" # xterm |
|
} |
|
;; |
|
esac |