Advertisement
Guest User

Untitled

a guest
Jul 18th, 2014
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.91 KB | None | 0 0
  1. 10-evdev.conf
  2.  
  3.  
  4. #
  5. # Catch-all evdev loader for udev-based systems
  6. # We don't simply match on any device since that also adds accelerometers
  7. # and other devices that we don't really want to use. The list below
  8. # matches everything but joysticks.
  9.  
  10. Section "InputClass"
  11. Identifier "evdev pointer catchall"
  12. MatchIsPointer "on"
  13. MatchDevicePath "/dev/input/event*"
  14. Driver "evdev"
  15. EndSection
  16.  
  17. Section "InputClass"
  18. Identifier "evdev keyboard catchall"
  19. MatchIsKeyboard "on"
  20. MatchDevicePath "/dev/input/event*"
  21. Driver "evdev"
  22. Option "XkbLayout" "dvorak"
  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.  
  46.  
  47. 10-quirks.conf
  48.  
  49.  
  50. # Collection of quirks and blacklist/whitelists for specific devices.
  51.  
  52.  
  53. # Accelerometer device, posts data through ABS_X/ABS_Y, making X unusable
  54. # http://bugs.freedesktop.org/show_bug.cgi?id=22442
  55. Section "InputClass"
  56. Identifier "ThinkPad HDAPS accelerometer blacklist"
  57. MatchProduct "ThinkPad HDAPS accelerometer data"
  58. Option "Ignore" "on"
  59. EndSection
  60.  
  61.  
  62. 20-intel.conf
  63.  
  64.  
  65. Section "Device"
  66. Identifier "Intel Graphics"
  67. Driver "intel"
  68. Option "AccelMethod" "sna"
  69. #Option "AccelMethod" "uxa"
  70. #Option "AccelMethod" "glamor"
  71. EndSection
  72.  
  73.  
  74. 20-nvidia.conf
  75.  
  76.  
  77. Section "Device"
  78. Identifier "Nvidia Card"
  79. Driver "nvidia"
  80. VendorName "NVIDIA Corporation"
  81. Option "NoLogo" "true"
  82. EndSection
  83.  
  84.  
  85. 50-synaptics.conf
  86.  
  87.  
  88. # Example xorg.conf.d snippet that assigns the touchpad driver
  89. # to all touchpads. See xorg.conf.d(5) for more information on
  90. # InputClass.
  91. # DO NOT EDIT THIS FILE, your distribution will likely overwrite
  92. # it when updating. Copy (and rename) this file into
  93. # /etc/X11/xorg.conf.d first.
  94. # Additional options may be added in the form of
  95. # Option "OptionName" "value"
  96. #
  97. Section "InputClass"
  98. Identifier "touchpad catchall"
  99. Driver "synaptics"
  100. MatchIsTouchpad "on"
  101. Option "TapButton1" "1"
  102. Option "TapButton2" "2"
  103. Option "TapButton3" "3"
  104. # This option is recommend on all Linux systems using evdev, but cannot be
  105. # enabled by default. See the following link for details:
  106. # http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
  107. MatchDevicePath "/dev/input/event*"
  108. EndSection
  109.  
  110. Section "InputClass"
  111. Identifier "touchpad ignore duplicates"
  112. MatchIsTouchpad "on"
  113. MatchOS "Linux"
  114. MatchDevicePath "/dev/input/mouse*"
  115. Option "Ignore" "on"
  116. EndSection
  117.  
  118. # This option enables the bottom right corner to be a right button on clickpads
  119. # and the right and middle top areas to be right / middle buttons on clickpads
  120. # with a top button area.
  121. # This option is only interpreted by clickpads.
  122. Section "InputClass"
  123. Identifier "Default clickpad buttons"
  124. MatchDriver "synaptics"
  125. Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
  126. Option "SecondarySoftButtonAreas" "58% 0 0 8% 42% 58% 0 8%"
  127. EndSection
  128.  
  129. # This option disables software buttons on Apple touchpads.
  130. # This option is only interpreted by clickpads.
  131. Section "InputClass"
  132. Identifier "Disable clickpad buttons on Apple touchpads"
  133. MatchProduct "Apple|bcm5974"
  134. MatchDriver "synaptics"
  135. Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
  136. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement