Command as window's name in Ubuntu's ZSH
How can you convert the following command for Ubuntu's ZSH?
DavidPashley's command for Bash
开发者_Go百科trap 'echo -e "\e]0;$BASH_COMMAND\007"' DEBUG
if [ "$SHELL" = '/bin/bash' ]
then
case $TERM in
rxvt|*term)
set -o functrace
trap 'echo -ne "\e]0;$BASH_COMMAND\007"' DEBUG
export PS1="\e]0;$TERM\007$PS1"
;;
esac
fi
I have this in my ~/.zshrc
case $TERM in
*xterm*|rxvt|(dt|k|E)term)
precmd () {
print -Pn "\033]0;%n@%m : %~\007"
}
preexec () {
print -Pn "\033]0;%n@%m : <$1>\007"
}
;;
esac
精彩评论