Created
December 20, 2018 13:48
-
-
Save sotlucas/a201f1d32e708d95198343da2ede9c8a to your computer and use it in GitHub Desktop.
If you have a ETPS/2 Elantech Touchpad that it's not working, you can try this and see if it works. In /etc/X11/ create a file named xorg.conf, paste this, save and reboot.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Section "InputClass" | |
Identifier "Touchpad" # required | |
MatchIsTouchpad "yes" # required | |
Driver "synaptics" # required | |
Option "MinSpeed" "0.5" | |
Option "MaxSpeed" "1.0" | |
Option "AccelFactor" "0.075" | |
Option "TapButton1" "1" | |
Option "TapButton2" "2" # multitouch | |
Option "TapButton3" "3" # multitouch | |
Option "VertTwoFingerScroll" "1" # multitouch | |
Option "HorizTwoFingerScroll" "1" # multitouch | |
Option "VertEdgeScroll" "1" | |
Option "CoastingSpeed" "8" | |
Option "CornerCoasting" "1" | |
Option "CircularScrolling" "1" | |
Option "CircScrollTrigger" "7" | |
Option "EdgeMotionUseAlways" "1" | |
Option "LBCornerButton" "8" # browser "back" btn | |
Option "RBCornerButton" "9" # browser "forward" btn | |
EndSection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment