1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-03 17:00:27 +00:00
prezto/xterms.zsh
2009-09-22 23:01:55 +01:00

16 lines
352 B
Bash

# Specific to xterms, such as OS X terminal
if [[ "${TERM}" == xterm* ]]; then
unset TMOUT
precmd () {
print -Pn "\033]0;%n@%m %~\007"
#print -Pn "\033]0;%n@%m%# %~ %l %w :: %T\a" ## or use this
}
preexec () {
print -Pn "\033]0;%n@%m <$1> %~\007"
#print -Pn "\033]0;%n@%m%# <$1> %~ %l %w :: %T\a" ## or use this
}
fi