Advertisement
Guest User

Untitled

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