]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
zsh: Fix display of running program on linux console.
authorSimon Ruderich <simon@ruderich.org>
Fri, 13 Mar 2009 18:00:42 +0000 (19:00 +0100)
committerSimon Ruderich <simon@ruderich.org>
Fri, 13 Mar 2009 18:00:42 +0000 (19:00 +0100)
This fix is additional to 4a38bc3a4780c7450a64e236344a3205506c7d46.

zsh/rc

diff --git a/zsh/rc b/zsh/rc
index 0618ee40a77548d6c99521a58cbe28cec2a752b5..f936b91ad2144408044479d5b12334a355a4faff 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -135,7 +135,7 @@ fi
 # It works with screen and xterm. If screen is running in X11 (DISPLAY is set)
 # and stumpwm is used (it's tested if stumpish is available) then the window
 # title is also set in stumpwm using stumpish.
-if [[ $TERM == screen || $TERM == xterm* ]]; then
+if [[ $TERM == screen* || $TERM == xterm* ]]; then
     # Set to a non empty value to reset the window name in the next precmd()
     # call.
     window_reset=yes
@@ -197,7 +197,7 @@ if [[ $TERM == screen || $TERM == xterm* ]]; then
 
     # Sets the window title. Works with screen and xterm.
     window_title() {
-        if [[ $TERM == screen ]]; then
+        if [[ $TERM == screen* ]]; then
             print -n "\ek$1\e\\"
 
             # Update window name in stumpwm if running screen in X11 and when