Estoy tratando de desactivar la pantalla táctil en mi computadora portátil Asus S200E. En Ubuntu 16.04, pude hacerlo con esto:
Section "InputClass"
Identifier "evdev touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
¿Cómo se puede hacer esto en Ubuntu 18.04?

xinput --list | grep -i "touch " | sed 's/id=//g' | cut -f2Respuestas:
Parece que se refiere a archivos ubicados en
/usr/share/X11/xorg.conf.d. ¿Quizás ellibinputcontrolador se actualizó recientemente para admitir su pantalla táctil?Probablemente quieras editar
/usr/share/X11/xorg.conf.d/10-evdev.confcon:Sección "InputClass" Identificador "evdev touchscreen catchall" MatchIsTouchscreen "on" MatchDevicePath "/ dev / input / event *" #Driver "evdev" Opción "Ignorar" "en" EndSectionY
/usr/share/X11/xorg.conf.d/40-libinput.confcon:Sección "InputClass" Identificador "catchall de pantalla táctil libinput" MatchIsTouchscreen "on" MatchDevicePath "/ dev / input / event *" #Driver "libinput" Opción "Ignorar" "en" EndSectionSi eso no funciona, obtenga el nombre de su pantalla táctil
xinputy agregue uno de los siguientes comandos a un script de inicio:fuente