diff --git a/LCDd.conf b/LCDd.conf index 6145bf0..ba50578 100644 --- a/LCDd.conf +++ b/LCDd.conf @@ -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 diff --git a/docs/lcdproc-user/drivers/curses.docbook b/docs/lcdproc-user/drivers/curses.docbook index 0651073..06eab87 100644 --- a/docs/lcdproc-user/drivers/curses.docbook +++ b/docs/lcdproc-user/drivers/curses.docbook @@ -21,9 +21,20 @@ curses chipset. Foreground= COLOUR - - foreground color [default: blue] - + + + Set the foreground color. + If not given, it defaults to blue. + + + + Legal values for COLOUR are + red, black, + green, yellow, + blue, magenta, + cyan and white. + + @@ -31,9 +42,17 @@ curses chipset. Background= COLOUR - - background color [default: cyan] - + + + Set the background color. + The default is cyan. + + + + The legal values for COLOUR are + the same as for the Foreground setting. + + @@ -41,9 +60,17 @@ curses chipset. Backlight= COLOUR - - backlight color [default: red] - + + + Set the background color that is to be used when backlight is set on. + backlight color. If not given, the default is red. + + + + The legal values for COLOUR are + the same as for the Foreground setting. + + @@ -74,6 +101,22 @@ curses chipset. Default: (7,7) + + + + UseACS= + + + yes + no + + + + + Tell whether to use ACS (alternative character set) symbols ifor icons and bars + instead of simple ASCII characters. + +