Advertisement
Guest User

50-synaptics.conf

a guest
Jan 8th, 2015
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 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. # This option is recommend on all Linux systems using evdev, but cannot be
  15. # enabled by default. See the following link for details:
  16. # http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
  17. MatchDevicePath "/dev/input/event*"
  18. EndSection
  19.  
  20. Section "InputClass"
  21. Identifier "touchpad ignore duplicates"
  22. MatchIsTouchpad "on"
  23. MatchOS "Linux"
  24. MatchDevicePath "/dev/input/mouse*"
  25. Option "Ignore" "on"
  26. EndSection
  27.  
  28. # This option enables the bottom right corner to be a right button on
  29. # non-synaptics clickpads.
  30. # This option is only interpreted by clickpads.
  31. Section "InputClass"
  32. Identifier "Default clickpad buttons"
  33. MatchDriver "synaptics"
  34. Option "SoftButtonAreas" "50% 0 80% 0 0 0 0 0"
  35. Option "AreaBottomEdge" "80%"
  36. # To disable the bottom edge area so the buttons only work as buttons,
  37. # not for movement, set the AreaBottomEdge
  38. # Option "AreaBottomEdge" "82%"
  39. EndSection
  40.  
  41. # This option disables software buttons on Apple touchpads.
  42. # This option is only interpreted by clickpads.
  43. Section "InputClass"
  44. Identifier "Disable clickpad buttons on Apple touchpads"
  45. MatchProduct "Apple|bcm5974"
  46. MatchDriver "synaptics"
  47. Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
  48. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement