document new option for curses driver

This commit is contained in:
marschap
2006-04-11 10:46:13 +00:00
parent 34b27e3e47
commit f5d844ea36
2 changed files with 59 additions and 13 deletions
+7 -4
View File
@@ -218,9 +218,9 @@ Reboot=yes
# color settings
# foreground color [default: blue]
Foreground=blue
# background color [default: cyan]
# background color when "backlight" is ff [default: cyan]
Background=cyan
# backlight color [default: red]
# background color when "backlight" is on [default: red]
Backlight=red
# display size [default: 20x4]
@@ -228,8 +228,11 @@ Size=20x4
# What position (X,Y) to start the left top corner at...
# Default: (7,7)
TopLeftx=7
TopLefty=7
TopLeftX=7
TopLeftY=7
# use ASC symbols for icons & bars [default: no; legal, yes, no]
UseACS=no
+52 -9
View File
@@ -21,9 +21,20 @@ curses chipset.
<command>Foreground=</command>
<arg choice="plain"><replaceable>COLOUR</replaceable></arg>
</term>
<listitem><para>
foreground color [default: blue]
</para></listitem>
<listitem>
<para>
Set the foreground color.
If not given, it defaults to <literal>blue</literal>.
</para>
<para>
Legal values for <replaceable>COLOUR</replaceable> are
<literal>red</literal>, <literal>black</literal>,
<literal>green</literal>, <literal>yellow</literal>,
<literal>blue</literal>, <literal>magenta</literal>,
<literal>cyan</literal> and <literal>white</literal>.
</para>
</listitem>
</varlistentry>
<varlistentry>
@@ -31,9 +42,17 @@ curses chipset.
<command>Background=</command>
<arg choice="plain"><replaceable>COLOUR</replaceable></arg>
</term>
<listitem><para>
background color [default: cyan]
</para></listitem>
<listitem>
<para>
Set the background color.
The default is <literal>cyan</literal>.
</para>
<para>
The legal values for <replaceable>COLOUR</replaceable> are
the same as for the <command>Foreground</command> setting.
</para>
</listitem>
</varlistentry>
<varlistentry>
@@ -41,9 +60,17 @@ curses chipset.
<command>Backlight=</command>
<arg choice="plain"><replaceable>COLOUR</replaceable></arg>
</term>
<listitem><para>
backlight color [default: red]
</para></listitem>
<listitem>
<para>
Set the background color that is to be used when backlight is set on.
backlight color. If not given, the default is <literal>red</literal>.
</para>
<para>
The legal values for <replaceable>COLOUR</replaceable> are
the same as for the <command>Foreground</command> setting.
</para>
</listitem>
</varlistentry>
<varlistentry>
@@ -74,6 +101,22 @@ curses chipset.
Default: (7,7)
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<command>UseACS=</command>
<arg choice ="plain">
<group choice="req">
<arg choice="plain"><literal>yes</literal></arg>
<arg choice="plain"><literal><emphasis>no</emphasis></literal></arg>
</group>
</arg>
</term>
<listitem><para>
Tell whether to use ACS (alternative character set) symbols ifor icons and bars
instead of simple ASCII characters.
</para></listitem>
</varlistentry>
</variablelist>
</sect3>