Advertisement
Guest User

Untitled

a guest
Jan 26th, 2021
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. Section "InputClass"
  2. Identifier "touchpad catchall"
  3. Driver "synaptics"
  4. MatchIsTouchpad "on"
  5. MatchDevicePath "/dev/input/event*"
  6.  
  7. # speed / acceleration / sensitivity
  8. Option "MinSpeed" "1" # default: 1
  9. Option "MaxSpeed" "2.5" # default: 1.75
  10. Option "AccelFactor" "0.035392" # default: 0.035392
  11.  
  12. # enable tapping
  13. Option "TapButton1" "1"
  14. Option "TapButton2" "3"
  15. Option "TapButton3" "2"
  16.  
  17. # enable clickpad
  18. Option "ClickPad" "true"
  19. Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
  20. Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
  21.  
  22. # natural scrolling
  23. Option "VertScrollDelta" "-113"
  24. Option "HorizScrollDelta" "-113"
  25.  
  26. # circular scrolling
  27. Option "CircularScrolling" "on"
  28. Option "CircScrollTrigger" "2"
  29.  
  30. # disable resistance to minute movements
  31. Option "HorizHysteresis" "0"
  32. Option "VertHysteresis" "0"
  33. EndSection
  34.  
  35. # This option enables the bottom right corner to be a right button on
  36. # non-synaptics clickpads.
  37. # This option is only interpreted by clickpads.
  38. Section "InputClass"
  39. Identifier "Default clickpad buttons"
  40. MatchDriver "synaptics"
  41. Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
  42. Option "SecondarySoftButtonAreas" "58% 0 0 8% 42% 58% 0 8%"
  43. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement