Created
August 17, 2017 14:08
-
-
Save ihommani/d1aa12d2077877f99f11a7d302d379f7 to your computer and use it in GitHub Desktop.
Disable touch screen on Linux
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 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