dotfiles/zsh/title.zsh

20 lines
488 B
Bash

# From http://dotfiles.org/~_why/.zshrc
# Sets the window title nicely no matter where you are
function title() {
# escape '%' chars in $1, make nonprintables visible
a=${(V)1//\%/\%\%}
# Truncate command, and join lines.
a=$(print -Pn "%40>...>$a" | tr -d "\n")
case $TERM in
screen)
print -Pn "\ek$a:$3\e\\" # screen title (in ^A")
;;
xterm*|*rxvt*)
#print -Pn "\e]0;%n@%M: %~\a"
print -Pn "\e]2;$a:$3\a" # plain xterm title ($3 for pwd)
;;
esac
}