据我理解,我可以通过在这个文件中添加“忽略”选项来禁用我的触摸屏。
/usr/share/X11/xorg.conf.d/10-evdev.conf
Section "InputClass"
Identifier "evdev touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection所以看起来会是这样
Section "InputClass"
Identifier "evdev touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "Ignore" "on"
EndSection如果我将MatchIsTouchscreen简化为"off“,会发生什么情况?
Section "InputClass"
Identifier "evdev touchscreen catchall"
MatchIsTouchscreen "off"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection这会使我的触摸屏失效吗?
发布于 2017-06-12 03:42:40
编辑的文件
sudo nano /usr/share/X11/xorg.conf.d/10-evdev.conf将MatchIsTouchscreen从"on“改为"off”
Section "InputClass"
Identifier "evdev touchscreen catchall"
MatchIsTouchscreen "off"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection"ELAN触摸屏“被禁用,不再在xinput中检测到。
https://askubuntu.com/questions/923911
复制相似问题