Created
August 3, 2017 06:35
-
-
Save alastorid/24344701fc8cebaf4f7d298247eae845 to your computer and use it in GitHub Desktop.
Dell XPS13 l322x Cypress Touchpad Fix
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
The cypress touchpad firmware is smarter than normal touchpad, but linux snyaptics driver treats it as a normal one. | |
So one will have hard time clicking a cypress touchpad. To fix this problem, add a file like this | |
/etc/X11/xorg.conf.d/99-clickpad.conf | |
Section "InputClass" | |
Identifier "Disable clickpad for touchpad" | |
MatchDriver "synaptics" | |
Option "ClickPad" "off" | |
Option "HorizTwoFingerScroll" "on" | |
Option "TapButton1" "on" | |
EndSection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment