Skip to content

Instantly share code, notes, and snippets.

@sotlucas
Created December 20, 2018 13:48
Show Gist options
  • Save sotlucas/a201f1d32e708d95198343da2ede9c8a to your computer and use it in GitHub Desktop.
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.
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