Skip to content

Instantly share code, notes, and snippets.

@MadMaxMcKinney
Created March 23, 2017 00:49
Show Gist options
  • Save MadMaxMcKinney/2c2e4dbae900262f8c5ae28aa8364091 to your computer and use it in GitHub Desktop.
Save MadMaxMcKinney/2c2e4dbae900262f8c5ae28aa8364091 to your computer and use it in GitHub Desktop.
Disable touchpad while typing on XPS 13 running Ubuntu. Add this section 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment