Re: Touchy Touchpad
Posted: Thu Nov 21, 2024 9:32 pm
If you remove the mouse, and then lift your hands off the palm rest... does your track pad work better ?
Smoothly, no issues?
Now try with the palms resting on the palm rest. If this NOW is an issue, but works when your palms are NOT on the rest...then you may have to identify what that area is and to detect it.
That trackpad MAY need some custom libinput values....
if you look at the following file, and make sure to have these entries in it.. you may prevent issues with PalmDetection issues.
I am also seeing this config for some people... you might that first one, then if that doesnt help, the second one.
( Make sure to reboot after changing it and test well...
Smoothly, no issues?
Now try with the palms resting on the palm rest. If this NOW is an issue, but works when your palms are NOT on the rest...then you may have to identify what that area is and to detect it.
That trackpad MAY need some custom libinput values....
if you look at the following file, and make sure to have these entries in it.. you may prevent issues with PalmDetection issues.
Code: Select all
/etc/X11/xorg.conf.d/30-touchpad-libinput.conf
Code: Select all
Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "Tapping" "True"
Option "PalmDetection" "True"
Option "TappingDragLock" "True"
EndSection
( Make sure to reboot after changing it and test well...
Code: Select all
Section "InputClass"
Identifier "touchpad"
Driver "libinput"
MatchIsTouchpad "on"
#Option "ClickMethod" "clickfinger"
Option "Tapping" "on"
Option "TappingButtonMap" "lrm"
Option "EmulateThirdButton" "1"
Option "EmulateThirdButtonTimeout" "750"
Option "EmulateThirdButtonMoveThreshold" "30"
Option "PalmDetection" "1"
Option "TappingDragLock" "1"
EndSection