summaryrefslogtreecommitdiff
path: root/zsh/zscripts/terminalname.zsh
blob: 8543896aeeebb9884c7f0988da84c94c7c3600a9 (plain)
1
2
3
4
5
6
7
8
function xtitle () {
    builtin print -n -- "\e]0;$@\a"
}

# Updates the window title whenever a command is run
function precmd () {
	xtitle "$(print -P ${USER}@${HOST} %2~)"
}