Advertisement
Guest User

lcd.conf

a guest
Aug 30th, 2012
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 36.37 KB | None | 0 0
  1. # LCDd.conf -- configuration file for the LCDproc server daemon LCDd
  2. #
  3. # This file contains the configuration for the LCDd server.
  4. #
  5. # The format is ini-file-like. It is divided into sections that start at
  6. # markers that look like [section]. Comments are all line-based comments,
  7. # and are lines that start with '#' or ';'.
  8. #
  9. # The server has a 'central' section named [server]. For the menu there is
  10. # a section called [menu]. Further each driver has a section which
  11. # defines how the driver acts.
  12. #
  13. # The drivers are activated by specifying them in a driver= line in the
  14. # server section, like:
  15. #
  16. # Driver=curses
  17. #
  18. # This tells LCDd to use the curses driver.
  19. # The first driver that is loaded and is capable of output defines the
  20. # size of the display. The default driver to use is curses.
  21. # If the driver is specified using the -d <driver> command line option,
  22. # the Driver= options in the config file are ignored.
  23. #
  24. # The drivers read their own options from the respective sections.
  25.  
  26.  
  27.  
  28. ## Server section with all kinds of settings for the LCDd server ##
  29. [server]
  30.  
  31. # Where can we find the driver modules ?
  32. # IMPORTANT: Make sure to change this setting to reflect your
  33. # specific setup! Otherwise LCDd won't be able to find
  34. # the driver modules and will thus not be able to
  35. # function properly.
  36. # NOTE: Always place a slash as last character !
  37. DriverPath=/home/pi/lcdproc/server/drivers/
  38.  
  39. # Tells the server to load the given drivers. Multiple lines can be given.
  40. # The name of the driver is case sensitive and determines the section
  41. # where to look for further configuration options of the specific driver
  42. # as well as the name of the dynamic driver module to load at runtime.
  43. # The latter one can be changed by giving a File= directive in the
  44. # driver specific section.
  45. #
  46. # The following drivers are supported:
  47. # bayrad, CFontz, CFontzPacket, curses, CwLnx, ea65,
  48. # EyeboxOne, g15, glcd, glcdlib, glk, hd44780, icp_a106, imon, imonlcd,
  49. # IOWarrior, irman, joy, lb216, lcdm001, lcterm, lirc, lis, MD8800,
  50. # mdm166a, ms6931, mtc_s16209x, MtxOrb, mx5000, NoritakeVFD, picolcd,
  51. # pyramid, sdeclcd, sed1330, sed1520, serialPOS, serialVFD, shuttleVFD, sli,
  52. # stv5730, svga, t6963, text, tyan, ula200, vlsys_m428, xosd
  53. Driver=hd44780
  54.  
  55. # Tells the driver to bind to the given interface
  56. Bind=127.0.0.1
  57. # Listen on this specified port; defaults to 13666.
  58. Port=13666
  59.  
  60. # Sets the reporting level; defaults to 2 (warnings and errors only).
  61. #ReportLevel=3
  62.  
  63. # Should we report to syslog instead of stderr ? [default: no; legal: yes, no]
  64. #ReportToSyslog=yes
  65.  
  66. # User to run as. LCDd will drop its root privileges, if any,
  67. # and run as this user instead.
  68. User=nobody
  69.  
  70. # The server will stay in the foreground if set to true.
  71. #Foreground=no
  72.  
  73. # Hello message: each entry represents a display line; default: builtin
  74. #Hello="......Test 123"
  75. #Hello="......Test 123"
  76.  
  77. # GoodBye message: each entry represents a display line; default: builtin
  78. #GoodBye="Thanks for using"
  79. #GoodBye=" LCDproc!"
  80.  
  81. # Sets the default time in seconds to displays a screen.
  82. WaitTime=5
  83.  
  84. # If set to no, LCDd will start with screen rotation disabled. This has the
  85. # same effect as if the ToggleRotateKey had been pressed. Rotation will start
  86. # if the ToggleRotateKey is pressed. Note that this setting does not turn off
  87. # priority sorting of screens. [default: on; legal: on, off]
  88. #AutoRotate=no
  89.  
  90. # If yes, the the serverscreen will be rotated as a usual info screen. If no,
  91. # it will be a background screen, only visible when no other screens are
  92. # active. The special value 'blank' is similar to no, but only a blank screen
  93. # is displayed. [default: on; legal: on, off, blank]
  94. #ServerScreen=no
  95.  
  96. # Set master backlight setting. If set to 'open' a client may control the
  97. # backlight for its own screens (only). [default: open; legal: off, open, on]
  98. #Backlight=open
  99.  
  100. # Set master heartbeat setting. If set to 'open' a client may control the
  101. # heartbeat for its own screens (only). [default: open; legal: off, open, on]
  102. #Heartbeat=open
  103.  
  104. # set title scrolling speed [default: 10; legal: 0-10]
  105. #TitleSpeed=10
  106.  
  107. # The "...Key=" lines define what the server does with keypresses that
  108. # don't go to any client. The ToggleRotateKey stops rotation of screens, while
  109. # the PrevScreenKey and NextScreenKey go back / forward one screen (even if
  110. # rotation is disabled.
  111. # Assign the key string returned by the driver to the ...Key setting. These
  112. # are the defaults:
  113. ToggleRotateKey=Enter
  114. PrevScreenKey=Left
  115. NextScreenKey=Right
  116. #ScrollUpKey=Up
  117. #ScrollDownKey=Down
  118.  
  119.  
  120. ## The menu section. The menu is an internal LCDproc client. ##
  121. [menu]
  122. # You can configure what keys the menu should use. Note that the MenuKey
  123. # will be reserved exclusively, the others work in shared mode.
  124.  
  125. # Up to six keys are supported. The MenuKey (to enter and exit the menu), the
  126. # EnterKey (to select values) and at least one movement keys are required.
  127. # These are the default key assignments:
  128. MenuKey=Escape
  129. EnterKey=Enter
  130. UpKey=Up
  131. DownKey=Down
  132. #LeftKey=Left
  133. #RightKey=Right
  134.  
  135.  
  136. ### Driver sections are below this line, in alphabetical order ###
  137.  
  138.  
  139. ## EMAC BayRAD driver ##
  140. [bayrad]
  141.  
  142. # Select the output device to use [default: /dev/lcd]
  143. Device=/dev/lcd
  144.  
  145. # Set the communication speed [default: 9600; legal: 1200, 2400, 9600, 19200]
  146. Speed=9600
  147.  
  148.  
  149.  
  150. ## CrystalFontz driver (for CF632 & CF634) ##
  151. [CFontz]
  152.  
  153. # Select the output device to use [default: /dev/lcd]
  154. Device=/dev/ttyS0
  155. # Select the LCD size [default: 20x4]
  156. Size=20x4
  157. # Set the initial contrast [default: 560; legal: 0 - 1000]
  158. Contrast=350
  159. # Set the initial brightness [default: 1000; legal: 0 - 1000]
  160. Brightness=1000
  161. # Set the initial off-brightness [default: 0; legal: 0 - 1000]
  162. # This value is used when the display is normally
  163. # switched off in case LCDd is inactive
  164. OffBrightness=0
  165. # Set the communication speed [default: 9600; legal: 1200, 2400, 9600, 19200,
  166. # 115200]
  167. Speed=9600
  168. # Set the firmware version (New means >= 2.0) [default: no; legal: yes, no]
  169. NewFirmware=no
  170. # Reinitialize the LCD's BIOS [default: no; legal: yes, no]
  171. # normally you shouldn't need this
  172. Reboot=no
  173.  
  174.  
  175.  
  176. ## CrystalFontz packet driver (for CFA533, CFA631, CFA633 & CFA635) ##
  177. [CFontzPacket]
  178.  
  179. # Select the LCD model [default: 633; legal: 533, 631, 633, 635]
  180. Model=633
  181.  
  182. # Select the output device to use [default: /dev/lcd]
  183. Device=/dev/ttyUSB0
  184.  
  185. # Set the initial contrast [default: 560; legal: 0 - 1000]
  186. Contrast=350
  187.  
  188. # Set the initial brightness [default: 1000; legal: 0 - 1000]
  189. Brightness=1000
  190.  
  191. # Set the initial off-brightness [default: 0; legal: 0 - 1000]
  192. # This value is used when the display is normally
  193. # switched off in case LCDd is inactive
  194. OffBrightness=50
  195.  
  196. # Reinitialize the LCD's BIOS on driver start. [default: no; legal: yes, no]
  197. Reboot=yes
  198.  
  199. # Enable the USB flag if the device is connected to an USB port. For
  200. # serial ports leave it disabled. [default: no; legal: yes, no]
  201. #USB=yes
  202.  
  203. # Very old 633 firmware versions do not support partial screen updates using
  204. # 'Send Data to LCD' command (31). For those devices it may be necessary to
  205. # enable this flag. [default: no; legal: yes, no]
  206. #OldFirmware=yes
  207.  
  208. # Override the LCD size known for the selected model. Usually setting this
  209. # value should not be necessary.
  210. #Size=20x4
  211.  
  212. # Override the default communication speed known for the selected model.
  213. # Default value depends on model [legal: 19200, 115200]
  214. #Speed=115200
  215.  
  216. ## Curses driver ##
  217. [curses]
  218.  
  219. # color settings
  220. # foreground color [default: blue]
  221. Foreground=blue
  222. # background color when "backlight" is off [default: cyan]
  223. Background=cyan
  224. # background color when "backlight" is on [default: red]
  225. Backlight=red
  226.  
  227. # display size [default: 20x4]
  228. Size=20x4
  229.  
  230. # What position (X,Y) to start the left top corner at...
  231. # Default: (7,7)
  232. TopLeftX=7
  233. TopLeftY=7
  234.  
  235. # use ASC symbols for icons & bars [default: no; legal: yes, no]
  236. UseACS=no
  237.  
  238. # draw Border [default: yes; legal: yes, no]
  239. DrawBorder=yes
  240.  
  241.  
  242.  
  243. ## Cwlinux driver ##
  244. [CwLnx]
  245.  
  246. # Select the LCD model [default: 12232; legal: 12232, 12832, 1602]
  247. Model=12232
  248.  
  249. # Select the output device to use [default: /dev/lcd]
  250. Device=/dev/ttyUSB0
  251.  
  252. # Select the LCD size. Default depends on model:
  253. # 12232: 20x4
  254. # 12832: 21x4
  255. # 1602: 16x2
  256. Size=20x4
  257.  
  258. # Set the communication speed [default: 19200; legal: 9600, 19200]
  259. Speed=19200
  260.  
  261. # Reinitialize the LCD's BIOS [default: no; legal: yes, no]
  262. # normally you shouldn't need this
  263. Reboot=no
  264.  
  265. # If you have a keypad connected. Keypad layout is currently not
  266. # configureable from the config file.
  267. Keypad=yes
  268.  
  269. # If you have a non-standard keypad you can associate any keystrings to keys.
  270. # There are 6 input keys in the CwLnx hardware that generate characters
  271. # from 'A' to 'F'.
  272. #
  273. # The following is the built-in default mapping hardcoded in the driver.
  274. # You can leave those unchanged if you have a standard keypad.
  275. # You can change it if you want to report other keystrings or have a non
  276. # standard keypad.
  277. # KeyMap_A=Up
  278. # KeyMap_B=Down
  279. # KeyMap_C=Left
  280. # KeyMap_D=Right
  281. # KeyMap_E=Enter
  282. # KeyMap_F=Escape
  283.  
  284. # keypad_test_mode permits one to test keypad assignment
  285. # Default value is no
  286. #keypad_test_mode=yes
  287.  
  288.  
  289.  
  290. ## ea65 driver for the display in AOpen XC Cube AV EA65 media barebones ##
  291. [ea65]
  292.  
  293. # Device is fixed /dev/ttyS1
  294. # Width and Height are fixed 9x1
  295.  
  296. # As the VFD is self luminescent we don't have a backlight
  297. # But we can use the backlight functions to control the front LEDs
  298. # Brightness 0 to 299 -> LEDs off
  299. # Brightness 300 to 699 -> LEDs half bright
  300. # Brightness 700 to 1000 -> LEDs full bright
  301. Brightness=500
  302. # OffBrightness is the the value used for the 'backlight off' state
  303. OffBrightness=0
  304.  
  305.  
  306.  
  307. ## EyeboxOne driver ##
  308. [EyeboxOne]
  309.  
  310. # Select the output device to use [default: /dev/ttyS1]
  311. #Device=/dev/cua01
  312. Device=/dev/ttyS1
  313.  
  314. # Set the display size [default: 20x4]
  315. Size=20x4
  316.  
  317. # Switch on the backlight? [default: yes]
  318. Backlight=yes
  319.  
  320. # Switch on the cursor? [default: no]
  321. Cursor=no
  322.  
  323. # Set the communication speed [default: 19200; legal: 1200, 2400, 9600, 19200]
  324. Speed=19200
  325.  
  326. # Enter Key is a \r character, so it's hardcoded in the driver
  327. LeftKey=D
  328. RightKey=C
  329. UpKey=A
  330. DownKey=B
  331. EscapeKey=P
  332.  
  333. # You can find out which key of your display sends which
  334. # character by setting keypad_test_mode to yes and running
  335. # LCDd. LCDd will output all characters it receives.
  336. # Afterwards you can modify the settings above and set
  337. # keypad_set_mode to no again.
  338. keypad_test_mode=no
  339.  
  340.  
  341.  
  342. ## g15 driver for Logitech G15 Keyboard LCDs ##
  343. [g15]
  344.  
  345. # Display size (currently unused)
  346. size=20x5
  347.  
  348.  
  349.  
  350. ## glcd generic graphical display driver
  351. [glcd]
  352. # Select what type of connection. See documentation for types.
  353. ConnectionType=t6963
  354.  
  355. # Width and height of the display in pixel. The supported sizes may depend on
  356. # the ConnectionType. [default: 128x64; legal: 1x1 - 640x480]
  357. #Size=128x64
  358.  
  359. # Width and height of a character cell in pixels. This value is only used if
  360. # the driver has been compiled with FreeType and it is enabled. Otherwise the
  361. # default 6x8 cell is used.
  362. #CellSize=12x16
  363.  
  364. # If LCDproc has been compiled with FreeType 2 support this option can be used
  365. # to turn if off intentionally. [default: yes; legal: yes, no]
  366. #useFT2=no
  367.  
  368. # Path to font file to use for FreeType rendering. This font must be monospace
  369. # and should contain some special Unicode characters like arrows (Andale Mono
  370. # is recommended and can be fetched at http://corefonts.sf.net).
  371. #normal_font=/usr/local/lib/X11/fonts/TTF/andalemo.ttf
  372.  
  373. # Some fonts miss the Unicode characters used to represent icons. In this case
  374. # the built-in 5x8 font can used if this option is turned off. [default: yes;
  375. # legal: yes, no]
  376. #fontHasIcons=no
  377. # Set the initial contrast if supported by connection type.
  378. # [default: 600; legal: 0 - 1000]
  379. #Contrast=600
  380.  
  381. # Set brightness of the backlight if the backlight is switched 'on'.
  382. # [default: 800; legal: 0 - 1000]
  383. #Brightness=1000
  384.  
  385. # Set brightness of the backlight if the backlight is switched 'off'. Set this
  386. # to zero to completely turn off the backlight. [default: 100; legal: 0 - 1000]
  387. #OffBrightness=0
  388.  
  389. # Time (ms) from first key report to first repeat. Set to 0 to disable repeated
  390. # key reports. [default: 500; legal: 0 - 3000]
  391. #KeyRepeatDelay=500
  392.  
  393. # Time (ms) between repeated key reports. Ignored if KeyRepeatDelay is disabled
  394. # (set to zero). [default: 300; legal: 0 - 3000]
  395. #KeyRepeatInterval=300
  396.  
  397. # Assign key strings to keys. There may be up to 16 keys numbered 'A' to 'Z'.
  398. # By default keys 'A' to 'F' are assigned Up, Down, Left, Right, Enter, Escape.
  399. KeyMap_A=Up
  400. KeyMap_B=Down
  401. KeyMap_C=Enter
  402. KeyMap_D=Escape
  403.  
  404. # t6963: Parallel port to use [default: 0x378; legal: 0x200 - 0x400]
  405. #Port=0x378
  406.  
  407. # t6963: Use LPT port in bi-directional mode. This should work on most LPT port
  408. # and is required for proper timing! [default: yes; legal: yes, no]
  409. #bidirectional=yes
  410.  
  411. # t6963: Insert additional delays into reads / writes. [default: no;
  412. # legal: yes, no]
  413. #delayBus=no
  414.  
  415. # serdisplib: Name of the underlying serdisplib driver, e.g. ctinclud. See
  416. # serdisplib documentation for details.
  417. serdisp_name=t6963
  418.  
  419. # serdisplib: The display device to use, e.g. serraw:/dev/ttyS0,
  420. # parport:/dev/parport0 or USB:07c0/1501.
  421. serdisp_device=/dev/ppi0
  422.  
  423. # serdisplib: Options string to pass to serdisplib during initialization. Use
  424. # this to set any display related options (e.g. wiring). The display size is
  425. # always set based on the Size configured above! By default, no options are
  426. # set.
  427. # Important: The value must be quoted as it contains equal signs!
  428. #serdisp_options="INVERT=1"
  429.  
  430.  
  431.  
  432.  
  433. ## glcdlib meta driver for graphical LCDs ##
  434. [glcdlib]
  435.  
  436. ## mandatory:
  437.  
  438. # which graphical display supported by graphlcd-base to use [default: image]
  439. # (see /etc/graphlcd.conf for possible drivers)
  440. Driver=noritake800
  441.  
  442. # no=use graphlcd bitmap fonts (they have only one size / font file)
  443. # yes=use fonts supported by FreeType2 (needs Freetype2 support in
  444. # libglcdprocdriver and its dependants)
  445. UseFT2=yes
  446.  
  447. # text resolution in fixed width characters [default: 16x4]
  448. # (if it won't fit according to available physical pixel resolution
  449. # and the minimum available font face size in pixels, then
  450. # 'DebugBorder' will automatically be turned on)
  451. TextResolution=20x4
  452.  
  453. # path to font file to use
  454. FontFile=/usr/share/fonts/corefonts/courbd.ttf
  455.  
  456. ## these only apply if UseFT2=yes:
  457.  
  458. # character encoding to use
  459. CharEncoding=iso8859-2
  460.  
  461. # minimum size in pixels in which fonts should be rendered
  462. MinFontFaceSize=7x12
  463.  
  464. ## optional:
  465. Brightness=50 # Brightness (in %) if applicable
  466. Contrast=50 # Contrast (in %) if applicable
  467. Backlight=no # Backlight if applicable
  468. UpsideDown=no # flip image upside down
  469. Invert=no # invert light/dark pixels
  470. ShowDebugFrame=no # turns on/off 1 pixel thick debugging
  471. # border within the usable text area,
  472. # for setting up TextResolution and
  473. # MinFontFaceSize (if using FT2);
  474. ShowBigBorder=no # border around the unused area
  475. ShowThinBorder=yes # border around the unused area
  476. PixelShiftX=0
  477. PixelShiftY=2
  478.  
  479.  
  480.  
  481. ## Matrix Orbital GLK driver ##
  482. [glk]
  483.  
  484. # select the serial device to use [default: /dev/lcd]
  485. Device=/dev/lcd
  486.  
  487. # set the initial contrast value [default: 560; legal: 0 - 1000]
  488. Contrast=560
  489.  
  490. # set the serial port speed [default: 19200; legal: 9600, 19200, 38400]
  491. Speed=19200
  492.  
  493.  
  494.  
  495. ## Hitachi HD44780 driver ##
  496. [hd44780]
  497.  
  498. # Select what type of connection. See documentation for types.
  499. ConnectionType=rpi
  500. D7=18
  501. D6=23
  502. D5=24
  503. D4=25
  504. RS=7
  505. EN=8
  506.  
  507. # Port where the LPT is. Usual value are: 0x278, 0x378 and 0x3BC
  508. Port=0x378
  509.  
  510. # Device of the serial interface [default: /dev/lcd]
  511. Device=/dev/ttyS0
  512.  
  513. # Bitrate of the serial port (0 for interface default)
  514. Speed=0
  515.  
  516. # If you have a keypad connected.
  517. # You may also need to configure the keypad layout further on in this file.
  518. Keypad=no
  519.  
  520. # Set the initial contrast (bwctusb, lcd2usb, and usb4all)
  521. # [default: 800; legal: 0 - 1000]
  522. #Contrast=0
  523.  
  524. # Set brightness of the backlight (lcd2usb and usb4all):
  525. # Brightness is the brightness while the backlight is set to 'on'.
  526. # [default: 800; legal: 0 - 1000]
  527. #Brightness=1000
  528.  
  529. # OffBrightness is the brightness while the backlight is set to 'off'.
  530. # [default: 300; legal: 0 - 1000]
  531. #OffBrightness=0
  532.  
  533. # If you have a switchable backlight.
  534. Backlight=no
  535.  
  536. # If you have the additional output port ("bargraph") and you want to
  537. # be able to control it with the lcdproc OUTPUT command
  538. OutputPort=no
  539.  
  540.  
  541. # Specifies if the last line is pixel addressable (yes) or it controls an
  542. # underline effect (no). [default: yes; legal: yes, no]
  543. #Lastline=yes
  544.  
  545. # Specifies the size of the LCD.
  546. # In case of multiple combined displays, this should be the total size.
  547. Size=16x2
  548.  
  549. # For multiple combined displays: how many lines does each display have.
  550. # Vspan=2,2 means both displays have 2 lines.
  551. #vspan=2,2
  552.  
  553. # If you have an HD66712, a KS0073 or another 'almost HD44780-compatible',
  554. # set this flag to get into extended mode (4-line linear).
  555. #ExtendedMode=yes
  556.  
  557. # In extended mode, on some controllers like the ST7036 (in 3 line mode)
  558. # the next line in DDRAM won't start 0x20 higher. [default: 0x20]
  559. #LineAddress=0x10
  560.  
  561. # Character map to to map ISO-8859-1 to the LCD's character set
  562. # [default: hd44780_default; legal: hd44780_default, hd44780_euro, ea_ks0073,
  563. # sed1278f_0b, hd44780_koi8_r, hd44780_cp1251, hd44780_8859_5, upd16314 ]
  564. # (hd44780_koi8_r, hd44780_cp1251, hd44780_8859_5 and upd16314 are possible if
  565. # compiled with additional charmaps)
  566. CharMap=hd44780_default
  567.  
  568. # If your display is slow and cannot keep up with the flow of data from
  569. # LCDd, garbage can appear on the LCDd. Set this delay factor to 2 or 4
  570. # to increase the delays. Default: 1.
  571. #DelayMult=2
  572.  
  573. # Some displays (e.g. vdr-wakeup) need a message from the driver to that it
  574. # is still alive. When set to a value bigger then null the character in the
  575. # upper left corner is updated every <KeepAliveDisplay> seconds. Default: 0.
  576. #KeepAliveDisplay=0
  577.  
  578. # If you experience occasional garbage on your display you can use this
  579. # option as workaround. If set to a value bigger than null it forces a
  580. # full screen refresh <RefreshDiplay> seconds. Default: 0.
  581. #RefreshDisplay=5
  582.  
  583. # You can reduce the inserted delays by setting this to false.
  584. # On fast PCs it is possible your LCD does not respond correctly.
  585. # Default: true.
  586. DelayBus=true
  587.  
  588. # If you have a keypad you can assign keystrings to the keys.
  589. # See documentation for used terms and how to wire it.
  590. # For example to give directly connected key 4 the string "Enter", use:
  591. # KeyDirect_4=Enter
  592. # For matrix keys use the X and Y coordinates of the key:
  593. # KeyMatrix_1_3=Enter
  594. KeyMatrix_4_1=Enter
  595. KeyMatrix_4_1=Enter
  596. KeyMatrix_4_2=Up
  597. KeyMatrix_4_3=Down
  598. KeyMatrix_4_4=Escape
  599.  
  600.  
  601.  
  602. ## ICP A106 driver ##
  603. [icp_a106]
  604. Device=/dev/ttyS1
  605.  
  606.  
  607.  
  608. ## Code Mercenaries IO-Warrior driver ##
  609. [IOWarrior]
  610.  
  611. # display dimensions
  612. Size=20x4
  613.  
  614. # serial number. Must be exactly as listed by usbview
  615. # (if not given, the 1st IOWarrior found gets used)
  616. #SerialNumber=00000674
  617.  
  618. # If you have an HD66712, a KS0073 or another 'almost HD44780-compatible',
  619. # set this flag to get into extended mode (4-line linear).
  620. #ExtendedMode=yes
  621.  
  622. # Specifies if the last line is pixel addressable (yes) or it controls an
  623. # underline effect (no). [default: yes; legal: yes, no]
  624. #Lastline=yes
  625.  
  626.  
  627.  
  628. ## Soundgraph/Ahanix/Silverstone/Uneed/Accent iMON driver ##
  629. [imon]
  630.  
  631. # select the device to use
  632. Device=/dev/lcd0
  633.  
  634. # display dimensions
  635. Size=16x2
  636.  
  637. # Character map to to map ISO-8859-1 to the displays character set.
  638. # [default: none; legal: none, hd44780_euro, upd16314, hd44780_koi8_r,
  639. # hd44780_cp1251, hd44780_8859_5 ] (upd16314, hd44780_koi8_r,
  640. # hd44780_cp1251, hd44780_8859_5 are possible if compiled with additional
  641. # charmaps)
  642. CharMap=hd44780_euro
  643.  
  644. ## Soundgraph iMON LCD ##
  645. [imonlcd]
  646. # Specify which iMon protocol should be used
  647. # [legal: 0, 1; default: 0]
  648. # Choose 0 for 15c2:ffdc device,
  649. # Choose 1 for 15c2:0038 device
  650. Protocol=0
  651.  
  652. # Set the exit behavior [legal: 0-2; default: 1]
  653. # 0 means leave shutdown message,
  654. # 1 means show the big clock,
  655. # 2 means blank device
  656. #OnExit=2
  657.  
  658. # Select the output device to use [default: /dev/lcd0]
  659. Device=/dev/lcd0
  660.  
  661. # Select the displays contrast [default: 200; legal: 0-1000]
  662. Contrast=200
  663.  
  664. # Specify the size of the display in pixels [default: 96x16]
  665. #Size=96x16
  666.  
  667. # Set the backlight state [default: on; legal: on, off]
  668. #Backlight=on
  669.  
  670. # Set the disc mode [legal: 0,1; default: 0]
  671. # 0 => spin the "slim" disc - two disc segments,
  672. # 1 => their complement spinning;
  673. #DiscMode=0
  674.  
  675.  
  676.  
  677. ## IrMan driver ##
  678. [IrMan]
  679. # in case of trouble with IrMan, try the Lirc emulator for IrMan
  680.  
  681. # Select the input device to use
  682. #Device=/dev/irman
  683.  
  684. # Select the configuration file to use
  685. #Config=/etc/irman.cfg
  686.  
  687.  
  688.  
  689. ## IRtrans driver ##
  690. [irtrans]
  691.  
  692. # Does the device have a backlight? [default: no; legal: yes, no]
  693. #Backlight=no
  694.  
  695. # IRTrans device to connect to [default: localhost]
  696. #Hostname=localhost
  697.  
  698. # display dimensions
  699. Size=16x2
  700.  
  701.  
  702.  
  703. ## Joystick driver ##
  704. [joy]
  705.  
  706. # Select the input device to use [default: /dev/js0]
  707. Device=/dev/js0
  708.  
  709. # set the axis map
  710. Map_Axis1neg=Left
  711. Map_Axis1pos=Right
  712. Map_Axis2neg=Up
  713. Map_Axis2pos=Down
  714.  
  715. # set the button map
  716. Map_Button1=Enter
  717. Map_Button2=Escape
  718.  
  719.  
  720.  
  721. ## LB216 driver ##
  722. [lb216]
  723.  
  724. # Select the output device to use [default: /dev/lcd]
  725. Device=/dev/lcd
  726.  
  727. # Set the initial brightness [default: 255; legal: 0 - 255]
  728. Brightness=255
  729.  
  730. # Set the communication speed [default: 9600; legal: 2400, 9600]
  731. Speed=9600
  732.  
  733. # Reinitialize the LCD's BIOS [default: no; legal: yes, no]
  734. Reboot=no
  735.  
  736.  
  737.  
  738. ## LCDM001 driver ##
  739. [lcdm001]
  740.  
  741. Device=/dev/ttyS1
  742.  
  743. # keypad settings
  744. # Keyname Function
  745. # Normal context Menu context
  746. # ------- -------------- ------------
  747. # PauseKey Pause/Continue Enter/select
  748. # BackKey Back(Go to previous screen) Up/Left
  749. # ForwardKey Forward(Go to next screen) Down/Right
  750. # MainMenuKey Open main menu Exit/Cancel
  751. PauseKey=LeftKey
  752. BackKey=UpKey
  753. ForwardKey=DownKey
  754. MainMenuKey=RightKey
  755.  
  756. # You can rearrange the settings here.
  757. # If your device is broken, have a look at server/drivers/lcdm001.h
  758.  
  759.  
  760.  
  761. ## HNE LCTerm driver ##
  762. [lcterm]
  763. Device=/dev/ttyS1
  764. Size=16x2
  765.  
  766.  
  767.  
  768. ## LIRC input driver ##
  769. [lirc]
  770.  
  771. # Specify an alternative location of the lircrc file [default: ~/.lircrc]
  772. #lircrc=/etc/lircrc.lcdproc
  773.  
  774. # Must be the same as in your lircrc
  775. #prog=lcdd
  776.  
  777.  
  778.  
  779. ## LIS MCE 2005 driver ##
  780. [lis]
  781.  
  782. # Set the initial brightness [default: 1000; legal: 0 - 1000]
  783. # 0-250 = 25%, 251-500 = 50%, 501-750 = 75%, 751-1000 = 100%
  784. #Brightness=1000
  785.  
  786. # Columns by lines [default: 20x2]
  787. #Size=20x2
  788.  
  789. # USB Vendor ID [default: 0x0403]
  790. # Change only if testing a compatible device.
  791. #VendorID=0x0403
  792.  
  793. # USB Product ID [default: 0x6001]
  794. # Change only if testing a compatible device.
  795. #ProductID=0x6001
  796.  
  797. # Specifies if the last line is pixel addressable (yes) or it only controls an
  798. # underline effect (no). [default: yes; legal: yes, no]
  799. #Lastline=yes
  800.  
  801.  
  802.  
  803. ##The driver for the VFD of the Medion MD8800 PC ##
  804. [MD8800]
  805. # device to use [default: /dev/ttyS1]
  806. #Device=/dev/ttyS1
  807.  
  808. # display size [default: 16x2]
  809. #Size=16x2
  810.  
  811. # Set the initial brightness [default: 1000; legal: 0 - 1000]
  812. Brightness=1000
  813. # Set the initial off-brightness [default: 0; legal: 0 - 1000]
  814. # This value is used when the display is normally
  815. # switched off in case LCDd is inactive
  816. OffBrightness=50
  817.  
  818.  
  819.  
  820. ## Futuba MDM166A Display
  821. [mdm166a]
  822. # Show self-running clock after LCDd shutdown
  823. # Possible values: [default: no; legal: no, small, big]
  824. Clock=big
  825. # Dim display, no dimming gives full brightness [default: no, legal: yes, no]
  826. Dimming=no
  827. # Dim display in case LCDd is inactive [default: no, legal: yes, no]
  828. OffDimming=yes
  829.  
  830.  
  831.  
  832. ## MSI MS-6931 driver for displays in 1HU servers ##
  833. [ms6931]
  834.  
  835. # device to use [default: /dev/ttyS1]
  836. Device=/dev/ttyS1
  837.  
  838. # display size [default: 16x2]
  839. #Size=16x2
  840.  
  841.  
  842.  
  843. ## MTC-S16209x driver ##
  844. [mtc_s16209x]
  845.  
  846. # Select the output device to use [default: /dev/lcd]
  847. Device=/dev/lcd
  848.  
  849. # Set the initial brightness [default: 255; legal: 0 - 255]
  850. Brightness=255
  851.  
  852. # Reinitialize the LCD's BIOS [default: no; legal: yes, no]
  853. Reboot=no
  854.  
  855.  
  856.  
  857. ## Matrix Orbital driver ##
  858. [MtxOrb]
  859.  
  860. # Select the output device to use [default: /dev/lcd]
  861. Device=/dev/ttyS0
  862.  
  863. # Set the display size [default: 20x4]
  864. Size=20x4
  865.  
  866. # Set the display type [default: lcd; legal: lcd, lkd, vfd, vkd]
  867. Type=lkd
  868.  
  869. # Set the initial contrast [default: 480]
  870. # NOTE: The driver will ignore this if the display
  871. # is a vfd or vkd as they don't have this feature
  872. Contrast=480
  873.  
  874. # Some old displays do not have an adjustable backlight but only can
  875. # switch the backlight on/off. If you experience randomly appearing block
  876. # characters, try setting this to false. [default: yes; legal: yes, no]
  877. hasAdjustableBacklight=no
  878.  
  879. # Set the initial brightness [default: 1000; legal: 0 - 1000]
  880. Brightness=1000
  881. # Set the initial off-brightness [default: 0; legal: 0 - 1000]
  882. # This value is used when the display is normally
  883. # switched off in case LCDd is inactive
  884. OffBrightness=0
  885.  
  886. # Set the communication speed [default: 19200; legal: 1200, 2400, 9600, 19200]
  887. Speed=19200
  888.  
  889. # The following table translates from MtxOrb key letters to logical key names.
  890. # By default no keys are mapped, meaning the keypad is not used at all.
  891. #KeyMap_A=Left
  892. #KeyMap_B=Right
  893. #KeyMap_C=Up
  894. #KeyMap_D=Down
  895. #KeyMap_E=Enter
  896. #KeyMap_F=Escape
  897. # See the [menu] section for an explanation of the key mappings
  898.  
  899. # You can find out which key of your display sends which
  900. # character by setting keypad_test_mode to yes and running
  901. # LCDd. LCDd will output all characters it receives.
  902. # Afterwards you can modify the settings above and set
  903. # keypad_set_mode to no again.
  904. keypad_test_mode=no
  905.  
  906.  
  907.  
  908. ## mx5000 driver for LCD display on the Logitech MX5000 keyboard ##
  909. [mx5000]
  910.  
  911. # Select the output device to use [default: /dev/hiddev0]
  912. Device = /dev/hiddev0
  913. # Time to wait in ms after the refresh screen has been sent [default: 1000]
  914. WaitAfterRefresh = 1000
  915.  
  916.  
  917.  
  918. ## Noritake VFD driver ##
  919. [NoritakeVFD]
  920. # device where the VFD is. Usual values are /dev/ttyS0 and /dev/ttyS1
  921. # [default: /dev/lcd]
  922. Device=/dev/ttyS0
  923. # Specifies the size of the LCD.
  924. Size=20x4
  925. # Set the initial brightness [default: 1000; legal: 0 - 1000]
  926. Brightness=1000
  927. # Set the initial off-brightness [default: 0; legal: 0 - 1000]
  928. # This value is used when the display is normally
  929. # switched off in case LCDd is inactive
  930. OffBrightness=50
  931. # set the serial port speed [default: 9600, legal: 1200, 2400, 9600, 19200, 115$
  932. Speed=9600
  933. # Set serial data parity [default: 0; legal: 0-2 ]
  934. # Meaning: 0(=none), 1(=odd), 2(=even)
  935. Parity=0
  936. # re-initialize the VFD [default: no; legal: yes, no]
  937. Reboot=no
  938.  
  939.  
  940.  
  941. ## Mini-box.com picoLCD (usblcd) driver ##
  942. [picolcd]
  943.  
  944. # KeyTimeout is only used if the picoLCD driver is built with libusb-0.1. When
  945. # built with libusb-1.0 key and IR data is input asynchronously so there is no
  946. # need to wait for the USB data.
  947. # KeyTimeout is the time in ms that LCDd spends waiting for a key press before
  948. # cycling through other duties. Higher values make LCDd use less CPU time and
  949. # make key presses more detectable. Lower values make LCDd more responsive
  950. # but a little prone to missing key presses. 500 (.5 second) is the default
  951. # and a balanced value. [default: 500; legal: 0 - 1000]
  952. KeyTimeout=500
  953.  
  954. # Key auto repeat is only available if the picoLCD driver is built with
  955. # libusb-1.0. Use KeyRepeatDelay and KeyRepeatInterval to configure key auto
  956. # repeat.
  957. #
  958. # Key auto repeat delay (time in ms from first key report to first repeat). Use
  959. # zero to disable auto repeat. [default: 300; legal: 0 - 3000]
  960. KeyRepeatDelay=300
  961.  
  962. # Key auto repeat interval (time in ms between repeat reports). Only used if
  963. # KeyRepeatDelay is not zero. [default: 200; legal: 0 - 3000]
  964. KeyRepeatInterval=200
  965.  
  966. # Sets the initial state of the backlight upon start-up.
  967. # [default: on; legal: on, off]
  968. #Backlight=on
  969.  
  970. # Set the initial brightness [default: 1000; legal: 0 - 1000]. Works only
  971. # with the 20x4 device
  972. Brightness=1000
  973.  
  974. # Set the brightness while the backlight is 'off' [default: 0; legal: 0 - 1000].
  975. # Works only with the 20x4 device.
  976. #OffBrightness=0
  977.  
  978. # Set the initial contrast [default: 1000; legal: 0 - 1000]
  979. Contrast=1000
  980.  
  981. # Link the key lights to the backlight? [default: on; legal: on, off]
  982. #LinkLights=off
  983.  
  984. # Light the keys? [default: on; legal: on, off]
  985. Keylights=on
  986.  
  987. # If Keylights is on, the you can unlight specific keys below:
  988. # Key0 is the directional pad. Key1 - Key5 correspond to the F1 - F5 keys.
  989. # There is no LED for the +/- keys. This is a handy way to indicate to users
  990. # which keys are disabled. [default: on; legal: on, off]
  991. Key0Light=on
  992. Key1Light=on
  993. Key2Light=on
  994. Key3Light=on
  995. Key4Light=on
  996. Key5Light=on
  997.  
  998. # Host name or IP address of the LIRC instance that is to receive IR codes
  999. # If not set, or set to an empty value, IR support is disabled.
  1000. #LircHost=127.0.0.1
  1001.  
  1002. # UDP port on which LIRC is listening [default: 8765; legal: 1 - 65535]
  1003. LircPort=8765
  1004.  
  1005. # Threshold in jiffies of synthesized gap that triggers flushing the IR data
  1006. # to lirc [default: 100 ; max: 32767 ]
  1007. # 100 means 6.1ms. legal: 16 - 32767; Use 0 to disable.
  1008. LircFlushThreshold=100
  1009.  
  1010.  
  1011.  
  1012. ## Pyramid LCD driver ##
  1013. [pyramid]
  1014.  
  1015. # device to connect to [default: /dev/lcd]
  1016. Device=/dev/ttyUSB0
  1017.  
  1018.  
  1019.  
  1020. ## SDEC driver for Watchguard Firebox ##
  1021. [sdeclcd]
  1022. # No options
  1023.  
  1024.  
  1025.  
  1026. ## Seiko Epson 1330 driver ##
  1027. [sed1330]
  1028.  
  1029. # Port where the LPT is. Common values are 0x278, 0x378 and 0x3BC
  1030. Port=0x378
  1031.  
  1032. # Type of LCD module (legal: G321D, G121C, G242C, G191D, G2446, SP14Q002)
  1033. # Note: Currently only tested with G321D & SP14Q002.
  1034. Type=G321D
  1035.  
  1036. # Width x Height of a character cell in pixels [legal: 6x7 - 8x16; default: 6x1$
  1037. CellSize=6x10
  1038.  
  1039. # Select what type of connection [legal: classic, bitshaker; default: classic]
  1040. ConnectionType=classic
  1041.  
  1042.  
  1043.  
  1044. ## Seiko Epson 1520 driver ##
  1045. [sed1520]
  1046.  
  1047. # Port where the LPT is. Usual values are 0x278, 0x378 and 0x3BC
  1048. Port=0x378
  1049.  
  1050. # Select the interface type (wiring) for the display. Supported values are
  1051. # 68 for 68-style connection (RESET level high) and 80 for 80-style connection
  1052. # (RESET level low). [legal: 68, 80; default: 80]
  1053. InterfaceType=80
  1054.  
  1055. # On fast machines it may be necessary to slow down transfer to the display.
  1056. # If this value is set to zero, delay is disabled. Any value greater than
  1057. # zero slows down each write by one microsecond. [legal: 0-1000; default: 1]
  1058. DelayMult=0
  1059.  
  1060. # The original wiring used an inverter to drive the control lines. If you do
  1061. # not use an inverter set haveInverter to no. [default: yes; legal: yes, no]
  1062. haveInverter=no
  1063.  
  1064.  
  1065.  
  1066. ## serial POS display driver ##
  1067. [serialPOS]
  1068.  
  1069. # Device to use in serial mode [default: /dev/lcd]
  1070. Device=/dev/lcd
  1071.  
  1072. # Specifies the size of the display in characters. [default: 16x2]
  1073. Size=16x2
  1074.  
  1075. # Set the communication protocol to use with the POS display.
  1076. # [default: AEDEX; legal: IEE, Epson, Emax, IBM, LogicControls, Ultimate]
  1077. Type=AEDEX
  1078.  
  1079. # communication baud rate with the display [default: 9600; legal: 1200, 2400,
  1080. # 19200, 115200]
  1081. Speed=9600
  1082.  
  1083.  
  1084.  
  1085. ## Serial VFD driver ##
  1086. ## Drives various (see below) serial 5x7dot VFD's. ##
  1087. [serialVFD]
  1088.  
  1089. # Specifies the displaytype.[default: 0]
  1090. # 0 NEC (FIPC8367 based) VFDs.
  1091. # 1 KD Rev 2.1.
  1092. # 2 Noritake VFDs (*).
  1093. # 3 Futaba VFDs
  1094. # 4 IEE S03601-95B
  1095. # 5 IEE S03601-96-080 (*)
  1096. # 6 Futaba NA202SD08FA (allmost IEE compatible)
  1097. # 7 Samsung 20S207DA4 and 20S207DA6
  1098. # 8 Nixdorf BA6x / VT100
  1099. # (* most should work, not tested yet.)
  1100. Type=0
  1101.  
  1102. # "no" if display connected serial, "yes" if connected parallel. [default: no]
  1103. # I.e. serial by default
  1104. use_parallel=no
  1105.  
  1106. # Number of Custom-Characters. default is display type dependent
  1107. #Custom-Characters=0
  1108.  
  1109. # Portaddress where the LPT is. Used in parallel mode only. Usual values are
  1110. # 0x278, 0x378 and 0x3BC.
  1111. Port=0x378
  1112.  
  1113. # Set parallel port timing delay (us). Used in parallel mode only.
  1114. # [default: 2; legal: 0 - 255]
  1115. #PortWait=2
  1116.  
  1117. # Device to use in serial mode. Usual values are /dev/ttyS0 and /dev/ttyS1
  1118. Device=/dev/ttyS1
  1119.  
  1120. # Specifies the size of the VFD.
  1121. Size=20x2
  1122.  
  1123. # Set the initial brightness [default: 1000; legal: 0 - 1000]
  1124. # (4 steps 0-250, 251-500, 501-750, 751-1000)
  1125. Brightness=1000
  1126. # Set the initial off-brightness [default: 0; legal: 0 - 1000]
  1127. # This value is used when the display is normally
  1128. # switched off in case LCDd is inactive
  1129. # (4 steps 0-250, 251-500, 501-750, 751-1000)
  1130. OffBrightness=0
  1131.  
  1132. # set the serial port speed [default: 9600; legal: 1200, 2400, 9600, 19200, 115$
  1133. Speed=9600
  1134.  
  1135. # enable ISO 8859 1 compatibility [default: yes; legal: yes, no]
  1136. #ISO_8859_1=yes
  1137.  
  1138.  
  1139.  
  1140. ## shuttleVFD driver ##
  1141. [shuttleVFD]
  1142. # No options
  1143.  
  1144.  
  1145.  
  1146. ## stv5730 driver ##
  1147. [stv5730]
  1148.  
  1149. # Port the device is connected to [default: 0x378]
  1150. Port=0x378
  1151.  
  1152.  
  1153. [SureElec]
  1154.  
  1155. # Port the device is connected to (by default first USB serial port)
  1156. Device=/dev/ttyUSB0
  1157.  
  1158. # Edition level of the device (can be 1, 2 or 3) [default: 2]
  1159. #Edition=1
  1160.  
  1161. # set display size
  1162. # Note: The size can be obtained directly from device for edition 2 & 3.
  1163. #Size=16x2
  1164.  
  1165. # Set the initial contrast [default: 480; legal: 0 - 1000]
  1166. #Contrast=200
  1167.  
  1168. # Set the initial brightness [default: 480; legal: 1 - 1000]
  1169. #Brightness=480
  1170.  
  1171. # Set the initial off-brightness [default: 100; legal: 1 - 1000]
  1172. # This value is used when the display is normally
  1173. # switched off in case LCDd is inactive
  1174. #OffBrightness=100
  1175.  
  1176.  
  1177. ## SVGAlib driver ##
  1178. [svga]
  1179.  
  1180. # svgalib mode to use [default: G320x240x256 ]
  1181. # legal values are supported svgalib modes
  1182. #Mode=G640x480x256
  1183.  
  1184. # set display size [default: 20x4]
  1185. Size=20x4
  1186.  
  1187. # Set the initial contrast [default: 500; legal: 0 - 1000]
  1188. # Can be set but does not change anything internally
  1189. Contrast=500
  1190. # Set the initial brightness [default: 1000; legal: 1 - 1000]
  1191. Brightness=1000
  1192.  
  1193. # Set the initial off-brightness [default: 500; legal: 1 - 1000]
  1194. # This value is used when the display is normally
  1195. # switched off in case LCDd is inactive
  1196. OffBrightness=500
  1197.  
  1198.  
  1199.  
  1200. ## Text driver ##
  1201. [text]
  1202. # Set the display size [default: 20x4]
  1203. Size=20x4
  1204.  
  1205.  
  1206.  
  1207. ## Toshiba T6963 driver ##
  1208. [t6963]
  1209.  
  1210. # set display size in pixels [default: 128x64]
  1211. Size=128x64
  1212.  
  1213. # port to use [default: 0x378; legal: 0x200 - 0x400]
  1214. Port=0x378
  1215.  
  1216. # Use LPT port in bi-directional mode. This should work on most LPT port and
  1217. # is required for proper timing! [default: yes; legal: yes, no]
  1218. #bidirectional=yes
  1219.  
  1220. # Insert additional delays into reads / writes. [default: no; legal: yes, no]
  1221. #delayBus=no
  1222.  
  1223. # Clear graphic memory on start-up. [default: no; legal: yes, no]
  1224. #ClearGraphic=no
  1225.  
  1226.  
  1227.  
  1228. ## Tyan Barebones LCD driver (GS10 & GS12 series) ##
  1229. [tyan]
  1230.  
  1231. # Select the output device to use [default: /dev/lcd]
  1232. Device=/dev/lcd
  1233.  
  1234. # Set the communication speed [default: 9600; legal: 4800, 9600]
  1235. Speed=9600
  1236.  
  1237. # set display size [default: 16x2]
  1238. Size=16x2
  1239.  
  1240.  
  1241.  
  1242. ## ELV ula200 driver ##
  1243. [ula200]
  1244.  
  1245. # Select the LCD size [default: 20x4]
  1246. Size=20x4
  1247.  
  1248. # If you have a non standard keypad you can associate any keystrings to keys.
  1249. # There are 6 input key in the CwLnx hardware that generate characters
  1250. # from 'A' to 'F'.
  1251. #
  1252. # The following it the built-in default mapping hardcoded in the driver.
  1253. # You can leave those unchanged if you have a standard keypad.
  1254. # You can change it if you want to report other keystrings or have a non
  1255. # standard keypad.
  1256. # KeyMap_A=Up
  1257. # KeyMap_B=Down
  1258. # KeyMap_C=Left
  1259. # KeyMap_D=Right
  1260. # KeyMap_E=Enter
  1261. # KeyMap_F=Escape
  1262.  
  1263.  
  1264.  
  1265. ## Wirz SLI LCD driver ##
  1266. [sli]
  1267.  
  1268. # Select the output device to use [default: /dev/lcd]
  1269. Device=/dev/lcd
  1270.  
  1271. # Set the communication speed [default: 19200; legal: 1200, 2400, 9600, 19200,
  1272. # 38400, 57600, 115200]
  1273. Speed=19200
  1274.  
  1275.  
  1276.  
  1277. ## vlsys_m428 for VFD/IR combination in Moneual MonCaso 320 ##
  1278. [vlsys_m428]
  1279.  
  1280. # Select the output device to use [default: /dev/ttyUSB0]
  1281. #Device=/dev/ttyUSB0
  1282.  
  1283.  
  1284.  
  1285. ## OnScreen Display using libxosd ##
  1286. [xosd]
  1287.  
  1288. # set display size [default: 20x4]
  1289. Size=20x4
  1290.  
  1291. # Offset in pixels from the top-left corner of the monitor [default: 0x0]
  1292. Offset=200x200
  1293.  
  1294. # X font to use, in XLFD format, as given by "xfontsel"
  1295. Font=-*-terminus-*-r-*-*-*-320-*-*-*-*-*
  1296.  
  1297. Font=-*-terminus-*-r-*-*-*-320-*-*-*-*-*
  1298.  
  1299. # EOF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement