Углеродные проблемы сенсорной панели третьего поколения Lenovo x1

Я использую углеродное третье поколение Lenovo x1 с человечностью 18.04, сенсорная панель ведет себя странная как, Если Вы ослабляете указатель на отдельный момент, и удаляет палец из сенсорной панели затем переходы указателя к случайной позиции.

Пример будет закрывать вкладку браузера, Перетащить указатель x и удалить палец от клавиатуры, переходов указателя к случайной позиции.

Действительно ли это нормально, Или является там чем-нибудь, что может помочь вокруг.

Спасибо

2
задан 20 May 2018 в 17:11

1 ответ

Та же проблема вынудила меня переключиться на драйвер Synaptics. Это удерживается от использования, но этот факт никогда не влиял на мой опыт.

Чтобы заставить Вашу сенсорную панель прекратить дрожать и становиться более точной, можно использовать мое решение:

В /usr/share/X11/xorg.conf.d каталог я имею 40-libinput.conf со следующим содержанием:

# Match on all types of devices but joysticks
Section "InputClass"
        Identifier "libinput pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
EndSection

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

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

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

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

И 70-synaptics.conf с:

# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# DO NOT EDIT THIS FILE, your distribution will likely overwrite
# it when updating. Copy (and rename) this file into
# /etc/X11/xorg.conf.d first.
# Additional options may be added in the form of
#   Option "OptionName" "value"
#
Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        Option "TapButton1" "1"
        Option "TapButton2" "3"
        Option "TapButton3" "2"
        Option "PalmDetect" "1"
        Option "PalmMinWidth" "8"
        Option "PalmMinZ" "100"
        Option "VertScrollDelta" "-125"
        Option "HorizTwoFingerScroll" "on"
        Option "HorizScrollDelta" "-125"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
      MatchDevicePath "/dev/input/event*"
EndSection

Section "InputClass"
        Identifier "touchpad ignore duplicates"
        MatchIsTouchpad "on"
        MatchOS "Linux"
        MatchDevicePath "/dev/input/mouse*"
        Option "Ignore" "on"
EndSection

# This option enables the bottom right corner to be a right button on clickpads
# and the right and middle top areas to be right / middle buttons on clickpads
# with a top button area.
# This option is only interpreted by clickpads.
Section "InputClass"
        Identifier "Default clickpad buttons"
        MatchDriver "synaptics"
        Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
        Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
EndSection

# This option disables software buttons on Apple touchpads.
# This option is only interpreted by clickpads.
Section "InputClass"
        Identifier "Disable clickpad buttons on Apple touchpads"
        MatchProduct "Apple|bcm5974"
        MatchDriver "synaptics"
        Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
EndSection

Если этот файл не существует, необходимо создать его. Заметьте, что число прежде synaptics должно быть больше, чем число прежде libinput.

Вы не должны удалять 40-libinput.conf потому что в этом случае сенсорная панель не будет работать вообще.

P.S. Хорошая статья, в которой можно узнать, как настроить файл Synaptics - https://wiki.archlinux.org/index.php/Touchpad_Synaptics

0
ответ дан 2 December 2019 в 07:34

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

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