Desativar a tela sensível ao toque

2

Entendo que posso desativar minha tela sensível ao toque adicionando Opção "Ignorar" "ligado" a este arquivo

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

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

então ficaria assim

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

O que aconteceria se eu simplificasse a mudança do MatchIsTouchscreen para "off"?

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

Isso desativaria minha tela sensível ao toque?

    
por Shawn Moore 10.06.2017 / 01:28

1 resposta

0

Arquivo editado no arquivo com

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

MatchIsTouchscreen alterado de "ativado" para "desativado"

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

"ELAN touchscreen" está desativado e não é mais detectado na lista de xinputs.

    
por Shawn Moore 12.06.2017 / 05:42