Advertisement
Guest User

70-synaptics.conf

a guest
Sep 6th, 2016
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 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.  
  11. Section "InputClass"
  12. Identifier "touchpad"
  13. Driver "synaptics"
  14. MatchIsTouchpad "on"
  15. Option "TapButton1" "1"
  16. Option "TapButton2" "3"
  17. Option "TapButton3" "2"
  18. Option "VertEdgeScroll" "on"
  19. Option "VertTwoFingerScroll" "on"
  20. Option "HorizEdgeScroll" "on"
  21. Option "HorizTwoFingerScroll" "on"
  22. Option "CircularScrolling" "on"
  23. Option "CircScrollTrigger" "2"
  24. Option "EmulateTwoFingerMinZ" "40"
  25. Option "EmulateTwoFingerMinW" "8"
  26. Option "CoastingSpeed" "0"
  27. Option "FingerLow" "30"
  28. Option "FingerHigh" "50"
  29. Option "MaxTapTime" "125"
  30. EndSection
  31.  
  32. Section "InputClass"
  33. Identifier "touchpad catchall"
  34. Driver "synaptics"
  35. MatchIsTouchpad "on"
  36. # This option is recommend on all Linux systems using evdev, but cannot be
  37. # enabled by default. See the following link for details:
  38. # http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
  39. # MatchDevicePath "/dev/input/event*"
  40. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement