Advertisement
Guest User

Untitled

a guest
Sep 28th, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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.         MatchDevicePath "/dev/input/event*"
  15.         Option "HorizTwoFingerScroll" "1"
  16.         Option "CoastingSpeed" "8"
  17.     Option "Tapping" "off"
  18. EndSection
  19.  
  20. Section "InputClass"
  21.         Identifier "touchpad ignore duplicates"
  22.         MatchIsTouchpad "on"
  23.         MatchOS "Linux"
  24.         MatchDevicePath "/dev/input/mouse*"
  25.         Option "Ignore" "on"
  26. EndSection
  27.  
  28. # This option enables the bottom right corner to be a right button on clickpads
  29. # and the right and middle top areas to be right / middle buttons on clickpads
  30. # with a top button area.
  31. # This option is only interpreted by clickpads.
  32. Section "InputClass"
  33.         Identifier "Default clickpad buttons"
  34.         MatchDriver "synaptics"
  35.         # Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
  36.         # Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
  37. EndSection
  38.  
  39. # This option disables software buttons on Apple touchpads.
  40. # This option is only interpreted by clickpads.
  41. Section "InputClass"
  42.         Identifier "Disable clickpad buttons on Apple touchpads"
  43.         MatchProduct "Apple|bcm5974"
  44.         MatchDriver "synaptics"
  45.         Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
  46. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement