Advertisement
Guest User

Untitled

a guest
May 26th, 2015
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.73 KB | None | 0 0
  1. Section "InputDevice"
  2.         Driver          "wacom"
  3.         Identifier      "cursor"
  4.         Option          "Device"        "/dev/ttyS0"
  5.         Option          "ForceDevice"   "ISDV4"
  6.         Option          "Type"          "cursor"
  7.         Option          "Mode"          "absolute"
  8.         Option          "Speed"         "3.0"
  9.         Option          "Threshold"     "2"
  10. #       Option          "DebugLevel"    "10"
  11. #       Option          "MaxX"          "24576"
  12. #       Option          "MaxY"          "18432"
  13. EndSection
  14. Section "InputDevice"
  15.         Driver          "wacom"
  16.         Identifier      "stylus"
  17.         Option          "Device"        "/dev/ttyS0"
  18.     Option          "ForceDevice"   "ISDV4"
  19.         Option          "Type"          "stylus"
  20.         Option          "Mode"          "absolute"
  21.     Option      "button2"   "3"
  22. #       Option          "Tilt"          "on"
  23. #       Option          "TiltInvert"    "on"
  24.         Option          "Threshold"     "2"
  25. #       Option          "DebugLevel"    "10"
  26. EndSection
  27. Section "InputDevice"
  28.         Driver          "wacom"
  29.         Identifier      "eraser"
  30.         Option          "Device"        "/dev/ttyS0"
  31.     Option          "ForceDevice"   "ISDV4"
  32.         Option          "Type"          "eraser"
  33.         Option          "Mode"          "absolute"
  34.     Option      "Button1"   "2"
  35. #       Option          "Tilt"          "on"
  36. #       Option          "TiltInvert"    "on"
  37.         Option          "Threshold"     "2"
  38. #       Option          "DebugLevel"    "10"
  39. EndSection
  40.  
  41. Section "ServerLayout"
  42.     Identifier  "Default Layout"
  43.     Screen      "Default Screen"
  44.     InputDevice "cursor"        "SendCoreEvents"
  45.     InputDevice "stylus"        "SendCoreEvents"
  46.     InputDevice "eraser"        "SendCoreEvents"
  47. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement