Skip to content

Instantly share code, notes, and snippets.

@alastorid
Created August 3, 2017 06:35
Show Gist options
  • Save alastorid/24344701fc8cebaf4f7d298247eae845 to your computer and use it in GitHub Desktop.
Save alastorid/24344701fc8cebaf4f7d298247eae845 to your computer and use it in GitHub Desktop.
Dell XPS13 l322x Cypress Touchpad Fix
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