This reverts commit d4ea399b04ef57dd31097eadc316305d1e42a194.
Robby Russell authored on 16/03/2011 at 19:20:35... | ... |
@@ -6,8 +6,8 @@ function title { |
6 | 6 |
if [[ "$TERM" == "screen" ]]; then |
7 | 7 |
print -Pn "\ek$1\e\\" #set screen hardstatus, usually truncated at 20 chars |
8 | 8 |
elif [[ ($TERM =~ "^xterm") ]] || [[ ($TERM == "rxvt") ]] || [[ "$TERM_PROGRAM" == "iTerm.app" ]]; then |
9 |
- print -Pn "\e]1;$1\a" #set icon (=tab) name (will override window name on broken terminal) |
|
10 | 9 |
print -Pn "\e]2;$2\a" #set window name |
10 |
+ print -Pn "\e]1;$1\a" #set icon (=tab) name (will override window name on broken terminal) |
|
11 | 11 |
fi |
12 | 12 |
} |
13 | 13 |
|