Skip to content

Instantly share code, notes, and snippets.

@ihommani
Created August 17, 2017 14:08
Show Gist options
  • Save ihommani/d1aa12d2077877f99f11a7d302d379f7 to your computer and use it in GitHub Desktop.
Save ihommani/d1aa12d2077877f99f11a7d302d379f7 to your computer and use it in GitHub Desktop.
Disable touch screen on Linux
The best (permanent) solution I could find was to edit /usr/share/X11/xorg.conf.d/10-evdev.conf
>> Add Option "Ignore" "on" to the touchscreen section so it looks like this:
Section "InputClass"
Identifier "evdev touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "Ignore" "on"
EndSection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment