problemas de touchpad do Lenovo x1 carbono de 3ª geração

2

Estou usando o Lenovo x1 carbono de 3ª geração com o Ubuntu 18.04, O touch pad está se comportando como um estranho, se você arrastar o ponteiro para um ponto específico e remover o dedo do touchpad, o ponteiro pulará para uma posição aleatória. / p>

Um exemplo será o fechamento de uma guia do navegador, arraste o ponteiro x e remova o dedo do bloco. O ponteiro pula para uma posição aleatória.

É normal, ou há algo que possa ajudar por aí?

Obrigado

    
por Comrade 20.05.2018 / 16:11

1 resposta

0

O mesmo problema me forçou a mudar para o driver Synaptics . Está depreciado mas esse fato nunca afetou minha experiência.

Para que seu touchpad pare de tremer e se torne mais preciso, você pode usar minha solução:

No diretório /usr/share/X11/xorg.conf.d , tenho 40-libinput.conf com o seguinte conteúdo:

# 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

e 70-synaptics.conf com:

# 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

Se este arquivo não existir, você deve criá-lo. Observe que o número antes do synaptics deve ser maior que o número antes da libinput.

Você não deve excluir 40-libinput.conf porque, nesse caso, o touchpad não funcionará.

P.S. Um bom artigo no qual você pode descobrir como configurar o arquivo Synaptics - link

    
por Ducky 27.05.2018 / 11:39