diff options
author | Timo Sirainen <cras@irssi.org> | 2002-02-18 09:00:26 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-02-18 09:00:26 +0000 |
commit | 26e94073828dd59fb34be82d14db8df3d505df52 (patch) | |
tree | cbd2b9711db7753074b2eebef80ea497390eb4af /docs/startup-HOWTO.html | |
parent | b8eff2d3b220ed68479a87742b05f82bcf14db44 (diff) | |
download | irssi-26e94073828dd59fb34be82d14db8df3d505df52.zip |
added statusbar help
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2512 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'docs/startup-HOWTO.html')
-rw-r--r-- | docs/startup-HOWTO.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/docs/startup-HOWTO.html b/docs/startup-HOWTO.html index ddd5d025..66e277b4 100644 --- a/docs/startup-HOWTO.html +++ b/docs/startup-HOWTO.html @@ -43,6 +43,10 @@ </ul></li> <li><a href="#c10">Proxies and IRC bouncers</a></li> <li><a href="#c11">Irssi's settings</a></li> +<li><a href="#c12">Statusbar</a> + <ul> + <li>I loaded a statusbar script but it's not visible anywhere!</li> + </ul></li> </ol> <h3><a id="c1">1. For all the lazy people</a></h3> @@ -808,3 +812,50 @@ of them you might want to change (the default value is shown):</p> <dt>/SET completion_char :</dt> <dd>Completion character to use.</dd> </dl> + +<h3><a id="c12">12. Statusbar</a></h3> + +<p><strong>/STATUSBAR</strong> displays a list of statusbars:</p> + +<pre> +Name Type Placement Position Visible +window window bottom 0 always +window_inact window bottom 1 inactive +prompt root bottom 100 always +topic root top 1 always +</pre> + +<p><strong>/STATUSBAR <name></strong> prints the statusbar +settings and it's items. <strong>/STATUSBAR <name> +ENABLE|DISABLE</strong> enables/disables the statusbar. +<strong>/STATUSBAR <name> RESET</strong> resets the statusbar to +it's default settings. If the statusbar was created by you, it will be +removed.</p> + +<p>Type can be window or root, meaning if the statusbar should be +created for each split window, or just once. Placement can be top or +bottom. Position is a number, the lower the value the higher in screen +it is. Visible can be always, active or inactive. Active/inactive is +meant to be used with split windows, one split window is active and rest +are inactive. These settings can be changed with:</p> + +<ul> +<li>STATUSBAR <name> TYPE window|root</li> +<li>STATUSBAR <name> PLACEMENT top|bottom</li> +<li>STATUSBAR <name> POSITION <num></li> +<li>STATUSBAR <name> VISIBLE always|active|inactive</li> +</ul> + +<p>When loading new statusbar scripts, you'll need to also specify +where you want to show it. Statusbar items can be modified with:</p> + +<ul> +<li>10:52 STATUSBAR <name> ADD [-before | -after <item>] [-priority #] [-alignment left|right] <item></li> +<li>10:52 STATUSBAR <name> REMOVE <item></li> +</ul> + +<p>The item name with statusbar scripts is usually same as the script's +name. Script's documentation should tell if this isn't the case. So, to +add mail.pl before the window activity item (see the list with +/STATUSBAR window), use: <strong>/STATUSBAR window ADD -before act +mail</strong>.</p> |