summaryrefslogtreecommitdiff
path: root/zscripts/terminalname.zsh
blob: 6e55d220a070551b99aac243d2e84c0f45c66a36 (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} %~)"
}