Advertisement
Francoo

Untitled

Jul 11th, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. # Example xorg.conf.d snippet that assigns the touchpad driver
  2. # to all touchpads. See xorg.conf.d(5) for more information on
  3. # InputClass.
  4. # DO NOT EDIT THIS FILE, your distribution will likely overwrite
  5. # it when updating. Copy (and rename) this file into
  6. # /etc/X11/xorg.conf.d first.
  7. # Additional options may be added in the form of
  8. # Option "OptionName" "value"
  9. #
  10. Section "InputClass"
  11. Identifier "touchpad catchall"
  12. Driver "synaptics"
  13. MatchIsTouchpad "on"
  14. Option "TapButton1" "1"
  15. Option "TapButton2" "3"
  16. Option "TapButton3" "2"
  17. Option "ClickPad" "true"
  18. Option "EmulateMidButtonTime" "0"
  19. Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
  20. # This option is recommend on all Linux systems using evdev, but cannot be
  21. # enabled by default. See the following link for details:
  22. # http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
  23. MatchDevicePath "/dev/input/event*"
  24. EndSection
  25.  
  26. Section "InputClass"
  27. Identifier "touchpad ignore duplicates"
  28. MatchIsTouchpad "on"
  29. MatchOS "Linux"
  30. MatchDevicePath "/dev/input/mouse*"
  31. Option "Ignore" "on"
  32. EndSection
  33.  
  34. # This option enables the bottom right corner to be a right button on clickpads
  35. # and the right and middle top areas to be right / middle buttons on clickpads
  36. # with a top button area.
  37. # This option is only interpreted by clickpads.
  38. Section "InputClass"
  39. Identifier "Default clickpad buttons"
  40. MatchDriver "synaptics"
  41. Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
  42. Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
  43. EndSection
  44.  
  45. # This option disables software buttons on Apple touchpads.
  46. # This option is only interpreted by clickpads.
  47. Section "InputClass"
  48. Identifier "Disable clickpad buttons on Apple touchpads"
  49. MatchProduct "Apple|bcm5974"
  50. MatchDriver "synaptics"
  51. Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
  52. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement