Advertisement
Guest User

Untitled

a guest
Feb 15th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 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 "FingerLow" "40"
  15. Option "FingerHigh"40"
  16. # This option is recommend on all Linux systems using evdev, but cannot be
  17. # enabled by default. See the following link for details:
  18. # http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
  19. MatchDevicePath "/dev/input/event*"
  20. EndSection
  21.  
  22. Section "InputClass"
  23. Identifier "touchpad ignore duplicates"
  24. MatchIsTouchpad "on"
  25. MatchOS "Linux"
  26. MatchDevicePath "/dev/input/mouse*"
  27. Option "Ignore" "on"
  28. EndSection
  29.  
  30. # This option enables the bottom right corner to be a right button on clickpads
  31. # and the right and middle top areas to be right / middle buttons on clickpads
  32. # with a top button area.
  33. # This option is only interpreted by clickpads.
  34. Section "InputClass"
  35. Identifier "Default clickpad buttons"
  36. MatchDriver "synaptics"
  37. Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
  38. Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
  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