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

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

          /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

Что произошло бы, если бы я simplied изменил MatchIsTouchscreen на "прочь"?

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

Это отключило бы мой сенсорный экран?

2
задан 1 July 2017 в 17:15

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.

0
ответ дан 2 December 2019 в 08:56

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

Похожие вопросы: