Advertisement
Guest User

Synaptics xorg config

a guest
Oct 31st, 2019
157
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.  
  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 "ClickFinger1" "1"
  19.         Option "ClickFinger2" "3"
  20.         Option "ClickFinger3" "2"
  21.         Option "VertEdgeScroll" "on"
  22.         Option "VertTwoFingerScroll" "on"
  23.         Option "HorizEdgeScroll" "on"
  24.         Option "HorizTwoFingerScroll" "on"
  25.         Option "CircularScrolling" "off"
  26.         Option "CoastingSpeed" "20"
  27.     Option "CoastingFriction" "20"
  28.     Option "VertScrollDelta" "-150"
  29.     Option "MinSpeed" "0.6"
  30.     Option "MaxSpeed" "1.0"
  31.     Option "AccelFactor" "0.1"
  32.     Option "MaxTapMove" "200"
  33. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement