Advertisement
thefinn93

Untitled

Oct 12th, 2011
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.21 KB | None | 0 0
  1. Section "Device"
  2. Identifier "Default Device"
  3. Option "NoLogo" "True"
  4. EndSection
  5. #
  6. # Catch-all evdev loader for udev-based systems
  7. # We don't simply match on any device since that also adds accelerometers
  8. # and other devices that we don't really want to use. The list below
  9. # matches everything but joysticks.
  10.  
  11. Section "InputClass"
  12. Identifier "evdev pointer catchall"
  13. MatchIsPointer "on"
  14. MatchDevicePath "/dev/input/event*"
  15. Driver "evdev"
  16. EndSection
  17.  
  18. Section "InputClass"
  19. Identifier "evdev keyboard catchall"
  20. MatchIsKeyboard "on"
  21. MatchDevicePath "/dev/input/event*"
  22. Driver "evdev"
  23. EndSection
  24.  
  25. Section "InputClass"
  26. Identifier "evdev touchpad catchall"
  27. MatchIsTouchpad "on"
  28. MatchDevicePath "/dev/input/event*"
  29. Driver "evdev"
  30. EndSection
  31.  
  32. Section "InputClass"
  33. Identifier "evdev tablet catchall"
  34. MatchIsTablet "on"
  35. MatchDevicePath "/dev/input/event*"
  36. Driver "evdev"
  37. EndSection
  38.  
  39. Section "InputClass"
  40. Identifier "evdev touchscreen catchall"
  41. MatchIsTouchscreen "on"
  42. MatchDevicePath "/dev/input/event*"
  43. Driver "evdev"
  44. EndSection
  45. Section "InputClass"
  46. Identifier "Avago Technologies mouse quirks (LP: #746639)"
  47. MatchIsPointer "on"
  48. MatchDevicePath "/dev/input/event*"
  49. Driver "evdev"
  50. MatchUSBID "192f:0416"
  51. Option "Emulate3Buttons" "True"
  52. Option "Emulate3Timeout" "50"
  53. EndSection
  54. Section "InputClass"
  55. Identifier "touchpad catchall"
  56. Driver "synaptics"
  57. MatchIsTouchpad "on"
  58. MatchDevicePath "/dev/input/event*"
  59. EndSection
  60. Section "InputClass"
  61. Identifier "vmmouse"
  62. MatchIsPointer "on"
  63. MatchTag "vmmouse"
  64. Driver "vmmouse"
  65. EndSection
  66.  
  67. Section "InputClass"
  68. Identifier "Wacom class"
  69. # WALTOP needs a patched kernel driver, that isn't in mainline lk yet,
  70. # so for now just let it fall through and be picked up by evdev instead.
  71. # MatchProduct "Wacom|WALTOP|WACOM"
  72. MatchProduct "Wacom|WACOM|Hanwang"
  73. MatchDevicePath "/dev/input/event*"
  74. Driver "wacom"
  75. EndSection
  76.  
  77. Section "InputClass"
  78. Identifier "Wacom serial class"
  79. MatchProduct "Serial Wacom Tablet"
  80. Driver "wacom"
  81. EndSection
  82.  
  83. Section "InputClass"
  84. Identifier "Wacom serial class identifiers"
  85. MatchProduct "WACf|FUJ02e5|FUJ02e7"
  86. Driver "wacom"
  87. EndSection
  88.  
  89.  
  90. # N-Trig Duosense Electromagnetic Digitizer
  91. Section "InputClass"
  92. Identifier "Wacom N-Trig class"
  93. MatchProduct "HID 1b96:0001|N-Trig Pen"
  94. MatchDevicePath "/dev/input/event*"
  95. Driver "wacom"
  96. Option "Button2" "3"
  97. EndSection
  98.  
  99. Section "InputClass"
  100. Identifier "Dell Inspiron embedded buttons quirks"
  101. MatchTag "inspiron_1011|inspiron_1012"
  102. MatchDevicePath "/dev/input/event*"
  103. Driver "synaptics"
  104. Option "JumpyCursorThreshold" "90"
  105. Option "AreaBottomEdge" "4100"
  106. EndSection
  107.  
  108. Section "InputClass"
  109. Identifier "Dell Inspiron quirks"
  110. MatchTag "inspiron_1120"
  111. MatchDevicePath "/dev/input/event*"
  112. Driver "synaptics"
  113. Option "JumpyCursorThreshold" "250"
  114. EndSection
  115.  
  116. Section "InputClass"
  117. Identifier "HP Mininote quirks"
  118. MatchTag "mininote_1000"
  119. MatchDevicePath "/dev/input/event*"
  120. Driver "synaptics"
  121. Option "JumpyCursorThreshold" "20"
  122. EndSection
  123.  
  124.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement