50-synaptics.conf 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. Section "InputClass"
  20. Identifier "touchpad ignore duplicates"
  21. MatchIsTouchpad "on"
  22. MatchOS "Linux"
  23. MatchDevicePath "/dev/input/mouse*"
  24. Option "Ignore" "on"
  25. EndSection
  26. # This option enables the bottom right corner to be a right button on clickpads
  27. # and the right and middle top areas to be right / middle buttons on clickpads
  28. # with a top button area.
  29. # This option is only interpreted by clickpads.
  30. Section "InputClass"
  31. Identifier "Default clickpad buttons"
  32. MatchDriver "synaptics"
  33. Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
  34. Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
  35. EndSection
  36. # This option disables software buttons on Apple touchpads.
  37. # This option is only interpreted by clickpads.
  38. Section "InputClass"
  39. Identifier "Disable clickpad buttons on Apple touchpads"
  40. MatchProduct "Apple|bcm5974"
  41. MatchDriver "synaptics"
  42. Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
  43. EndSection
  44. Section "InputClass"
  45. Identifier "touchpad"
  46. Driver "synaptics"
  47. MatchIsTouchpad "on"
  48. Option "TapButton1" "1"
  49. Option "TapButton2" "2"
  50. Option "TapButton3" "3"
  51. Option "VertEdgeScroll" "on"
  52. Option "VertTwoFingerScroll" "on"
  53. Option "HorizEdgeScroll" "on"
  54. Option "HorizTwoFingerScroll" "on"
  55. Option "CircularScrolling" "on"
  56. Option "CircScrollTrigger" "2"
  57. Option "EmulateTwoFingerMinZ" "40"
  58. Option "EmulateTwoFingerMinW" "8"
  59. Option "CoastingSpeed" "0"
  60. Option "FingerLow" "30"
  61. Option "FingerHigh" "50"
  62. Option "MaxTapTime" "125"
  63. EndSection