Advertisement
Guest User

synaptics

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