应该/如何编辑文件 /usr/share/X11/xorg.conf.d/10-evdev.conf 禁用触摸屏

应该/如何编辑文件 /usr/share/X11/xorg.conf.d/10-evdev.conf 禁用触摸屏

我的触摸屏坏了,一启用它就会出问题。

我是否应该将选项“Ignore” “on”添加到 /usr/share/X11/xorg.conf.d/10-evdev.conf 文件中?

    Section "InputClass"
    Identifier "evdev touchscreen catchall"
    MatchIsTouchscreen "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev" 
    **Option "Ignore" "on"**
    EndSection

为什么我不能将 MatchIsTouchscreen 改为“关闭”????????????????

我读过很多帖子,建议添加“忽略”选项。一个帖子说编辑配置文件可能会“炸毁 xserver!”这是真的吗?

如果编辑这个文件 /usr/share/X11/xorg.conf.d/10-evdev.conf 可以的话,最好的方法是什么?

   1) sudo nano /usr/share/X11/xorg.conf.d/10-evdev.conf 
   2) sudo gedit /usr/share/X11/xorg.conf.d/10-evdev.conf
   3) from files simply follow path to -evdev.conf file and edit and save

我目前在启动应用程序中运行 xinput disable "ELAN Touchscreen",但当我的笔记本电脑从挂起状态唤醒时,触摸屏已启用。因此,我要么重新启动,要么费力地在终端中运行命令;当屏幕出现故障时,这有时是一个真正的挑战。

我知道这个问题已被问过很多次,但我想其他人一定和我一样困惑。

答案1

编辑文件文件

sudo nano /usr/share/X11/xorg.conf.d/10-evdev.conf

将 MatchIsTouchscreen 从“开”更改为“关”

Section "InputClass"
        Identifier "evdev touchscreen catchall"
        MatchIsTouchscreen "off"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
        EndSection

“ELAN 触摸屏”已被禁用,并且不再在 xinput 列表中检测到。

相关内容