Отключить сенсорный экран

Насколько я понимаю, я могу отключить свой сенсорный экран, добавив опцию "Игнорировать" "вкл" в этот файл

          /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

Будет ли это отключить мой сенсорный экран?

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 touchscreen" отключен и больше не определяется в списке xinput.

Другие вопросы по тегам