diff options
| author | David Leadbeater | 2014-06-15 18:52:22 +0100 | 
|---|---|---|
| committer | David Leadbeater | 2014-06-15 18:52:22 +0100 | 
| commit | 966e4340d609179ce7908a60040d0657dbb9f91b (patch) | |
| tree | efc339abd418a713254d97f16bcd9967ec86f904 /scripts | |
| parent | 1777b5bab4b92f6eebd7269c2657ac824b61b067 (diff) | |
| download | scripts.irssi.org-966e4340d609179ce7908a60040d0657dbb9f91b.tar.bz2 | |
Update title.pl
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/title.pl | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/scripts/title.pl b/scripts/title.pl index 6e31ffc..f6fa3de 100644 --- a/scripts/title.pl +++ b/scripts/title.pl @@ -1,5 +1,5 @@  use Irssi 20020120.0250 (); -$VERSION = "3.2"; +$VERSION = "3.2b";  %IRSSI = (      authors     => 'Timo Sirainen, David Leadbeater',      contact     => 'tss@iki.fi, dgl@dgl.cx', @@ -9,7 +9,6 @@ $VERSION = "3.2";      url         => 'http://irssi.dgl.cx/',  ); -  # Settings:  # title_string: The string used in the title, see below for explaination  # title_topic_length: The length to truncate the topic to (some terminals have @@ -29,6 +28,11 @@ $VERSION = "3.2";  # Nickname with usermode  # /set title_string $N(+$usermode) +# To use this with screen you need some lines in your ~/.screenrc +# termcap xterm 'hs:ts=\E]2;:fs=\007:ds=\E]2;screen\007' +# terminfo xterm 'hs:ts=\E]2;:fs=\007:ds=\E]2;screen\007' +# This probably only works if you have $TERM set to xterm. +  my %act;  use IO::Handle; | 
