Отключите сенсорный экран на x1 углероде при закрытии

Я люблю использовать свой x1 углерод с крышкой, закрытой, и включил внешний монитор. Проблема, сенсорный экран неправильно себя ведет, вызывая странные проблемы отслеживания с мышью USB (курсор суетится).

Я отредактировал/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

Это решило мою проблему при работе с внешним монитором, но когда я использовал свой ноутбук позже без внешнего монитора, сенсорная панель не работала.

Кто-либо знает, как отключить сенсорный экран, но сохранить сенсорную панель функциональной?

Вот все содержание файла (без "Ignore" опция).

#
# Catch-all evdev loader for udev-based systems
# We don't simply match on any device since that also adds accelerometers
# and other devices that we don't really want to use. The list below
# matches everything but joysticks.

Section "InputClass"
        Identifier "evdev pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev keyboard catchall"
        MatchIsKeyboard "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev tablet catchall"
        MatchIsTablet "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchscreen catchall"
        MatchIsTouchscreen "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection
1
задан 19 October 2016 в 17:34

0 ответов

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

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