diff options
Diffstat (limited to 'zscripts/terminalname.zsh')
-rwxr-xr-x | zscripts/terminalname.zsh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/zscripts/terminalname.zsh b/zscripts/terminalname.zsh new file mode 100755 index 0000000..6e55d22 --- /dev/null +++ b/zscripts/terminalname.zsh @@ -0,0 +1,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} %~)" +} |