Skip to content

Instantly share code, notes, and snippets.

@zfwf
Last active April 11, 2017 10:46
Show Gist options
  • Save zfwf/c1fd1dc016f921df312ee6e2d7cdf7f7 to your computer and use it in GitHub Desktop.
Save zfwf/c1fd1dc016f921df312ee6e2d7cdf7f7 to your computer and use it in GitHub Desktop.
Dell XPS13/XPS15/Precision E5520/ touchpad fix

from: https://ubuntuforums.org/showthread.php?t=2327954&p=13505497#post13505497
Change syndaemon settings to: syndaemon -i 1.0 -KRd
Unfortunately this cannot be set on startup as of 16.04: https://bugs.launchpad.net/ubuntu/+source/unity-settings-daemon/+bug/1351772
Use after logon to activate: pkill syndaemon; syndaemon -i 1.0 -KRd

from: https://ubuntuforums.org/showthread.php?t=2316240&p=13461233#post13461233
add below entry to: /usr/share/X11/xorg.conf.d/51-synaptics-quirks.conf

# Disable generic Synaptics device, as we're using
# "DLL0704:01 06CB:76AE Touchpad"
# Having multiple touchpad devices running confuses syndaemon
Section "InputClass"
        Identifier "SynPS/2 Synaptics TouchPad"
        MatchProduct "SynPS/2 Synaptics TouchPad"
        MatchIsTouchpad "on"
        MatchOS "Linux"
        MatchDevicePath "/dev/input/event*"
        Option "Ignore" "on"
EndSection

then restarted Xorg: sudo systemctl restart lightdm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment