Guest User

Untitled

a guest
Dec 14th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. 1. `apt-get update`
  2. 2. `apt-get install xserver-xorg-input-synaptics`
  3. 3. Replace the contents of the file `/usr/share/X11/xorg.conf.d/70-synaptics.conf` with the following:
  4.  
  5. ```
  6. Section "InputClass"
  7. Identifier "touchpad catchall"
  8. Driver "synaptics"
  9. MatchIsTouchpad "on"
  10. MatchDevicePath "/dev/input/event*"
  11. Option "FingerLow" "10"
  12. Option "FingerHigh" "16"
  13. Option "TapButton1" "1"
  14. Option "TapButton2" "3"
  15. Option "VertTwoFingerScroll" "on"
  16. EndSection
  17. ```
  18.  
  19. 4. Reboot
Add Comment
Please, Sign In to add comment