Forgot to commit new key stuff in config file.

This commit is contained in:
robijn
2003-04-18 12:03:33 +00:00
parent c72f813a4c
commit 883cb6a43b
+38 -12
View File
@@ -6,20 +6,22 @@
# markers that look like [section]. Comments are all line-based comments, # markers that look like [section]. Comments are all line-based comments,
# and are lines that start with '#' or ';'. # and are lines that start with '#' or ';'.
# #
# The server has a 'central' section named [server]. Further each driver # The server has a 'central' section named [server]. For the menu there is
# has a section which defines how the driver acts. # a section called [menu]. Further each driver has a section which
# defines how the driver acts.
# #
# The drivers are activated by specifiying them in a driver= line in the # The drivers are activated by specifiying them in a driver= line in the
# server section, like: # server section, like:
# #
# Driver=curses # Driver=curses
# #
# This tells LCDd to use the curses driver. The first driver that is # This tells LCDd to use the curses driver.
# loaded and is capable of output becomes 'the' output driver. # The first driver that is loaded and is capable of output defines the
# All extra drivers can only serve as input. # size of the display. The default driver to use is curses.
# The default driver to use is curses. # If -d is specified on the command line, the Driver= options in the
# config file are ignored.
# #
# The drivers can read their own options from the config file, but most of # The drivers can read their own options from the config file, but some of
# them don't do this yet. They expect 'command-line'-format parameters that # them don't do this yet. They expect 'command-line'-format parameters that
# were previously placed on the command line. These parameters can be # were previously placed on the command line. These parameters can be
# given to the driver in the following way: # given to the driver in the following way:
@@ -33,8 +35,6 @@
# -d <driver> "<driverargs>" # -d <driver> "<driverargs>"
# #
# Note that the -d option still works, but not allows driverargs anymore. # Note that the -d option still works, but not allows driverargs anymore.
# If -d is specified on the command line, the Driver= options in the
# config file are ignored.
[server] [server]
@@ -81,15 +81,42 @@ DriverPath=server/drivers/
# Where can we find the driver modules ? # Where can we find the driver modules ?
# Always place a slash as last character ! # Always place a slash as last character !
# The "...Key=" lines define what the server does with keypresses that
# don't go to any client.
# These are the defaults:
ToggleRotateKey=Enter
PrevScreenKey=Left
NextScreenKey=Right
#ScrollUpKey=Up
#ScrollDownKey=Down
# If you have only 4 keys, you can choose to use this:
#ToggleRotateKey=Enter
#PrevScreenKey=Up
#NextScreenKey=Down
# If you have only 3 keys, you can choose to use this:
#ToggleRotateKey=Enter
#PrevScreenKey=Up
[menu] [menu]
# The menu section. You can configure what keys the menu should use. # The menu section. The menu is an internal LCDproc client.
# Note that only the menukey will be reserved exclusively. # You can configure what keys the menu should use. Note that only the menukey
# will be reserved exclusively, the others in shared mode.
# The following works excelent with 4 keys or more.
MenuKey=Escape MenuKey=Escape
EnterKey=Enter EnterKey=Enter
UpKey=Up UpKey=Up
DownKey=Down DownKey=Down
# If you have only 3 keys, you could use something like this:
#MenuKey=Escape
#EnterKey=Enter
#DownKey=Down
# Driver sections are below this line, in alphabetical order # Driver sections are below this line, in alphabetical order
@@ -194,7 +221,6 @@ Arguments="-d /dev/ttyS0 -s 9600"
[hd44780] [hd44780]
# Hitachi HD44780 driver # Hitachi HD44780 driver
# See docs/hd44780_howto.txt
Port=0x378 Port=0x378
# Port where the LPT is. Usual values are 0x278, 0x378 and 0x3BC # Port where the LPT is. Usual values are 0x278, 0x378 and 0x3BC