diff options
author | Tim Keller <tjk@tjkeller.xyz> | 2024-10-18 21:52:28 -0500 |
---|---|---|
committer | Tim Keller <tjk@tjkeller.xyz> | 2024-10-18 21:52:28 -0500 |
commit | 2dc486fb891e65658dff83ab34ca8878756a6a90 (patch) | |
tree | 03b39eb93f38534ab0972beadb770fecbd2243b8 /zscripts/terminalname.zsh | |
download | zsh-2dc486fb891e65658dff83ab34ca8878756a6a90.tar.xz zsh-2dc486fb891e65658dff83ab34ca8878756a6a90.zip |
initial commit
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} %~)" +} |