1 (edited by jim 2024-02-15 11:52:58)

Topic: Touchpad doesn't work (cursor does not move)

Hi all . I wanted to know which of the solutions works today?
I saw two solutions to this issue.

First solution:

doas usermod -aG input [USERNAME]
$ doas nano  /etc/X11/xorg.conf.d/00-touchpad.conf
ection "InputClass"
        Identifier      "laplet touchpad"
        MatchIsTouchpad "yes"
        Driver          "synaptics"
        Option          "ClickPad"              "yes"
#       Option          "Device"                "/dev/input/event19"
        Option          "HorizEdgeScroll"       "yes"
        Option          "LockedDrags"           "no"
        Option          "PalmDetect"            "yes"
        Option          "PalmMinWidth"          "8"
        Option          "PalmMinZ"              "100"
        Option          "Protocol"              "auto-dev"
        Option          "TapButton1"            "1"
        Option          "TapButton2"            "3"
        Option          "TapButton3"            "2"
        Option          "TouchpadOff"           "0"
        Option          "VertEdgeScroll"        "yes"
EndSection

Second solution:

doas usermod -aG input [USERNAME]

Solved. Just had to set it up.

    Touchpad Synaptics - ArchWiki https://wiki.archlinux.org/title/Touchpad_Synaptics

$ doas nano /etc/X11/xorg.conf.d/70-synaptics.conf
Section "InputClass"
        Identifier      "touchpad"
        Driver          "synaptics"
        MatchIsTouchpad "on"
EndSection

Do I need to download drivers xenocara-input-synaptics ? Or is this configuration sufficient?

2 (edited by jim 2024-02-14 11:49:19)

Re: Touchpad doesn't work (cursor does not move)

I checked the second solution works! big_smile

3

Re: Touchpad doesn't work (cursor does not move)

t440p this work fine

Section "InputClass"
    Identifier "touchpad"
    Driver "synaptics"
    MatchIsTouchpad "on"
        Option "TapButton1" "1"
        Option "TapButton2" "3"
        Option "TapButton3" "2"
        Option "VertEdgeScroll" "on"
        Option "VertTwoFingerScroll" "on"
        Option "HorizEdgeScroll" "on"
        Option "HorizTwoFingerScroll" "on"
        Option "CircularScrolling" "on"
        Option "CircScrollTrigger" "2"
        Option "EmulateTwoFingerMinZ" "40"
        Option "EmulateTwoFingerMinW" "8"
        Option "CoastingSpeed" "0"
        Option "FingerLow" "30"
        Option "FingerHigh" "50"
        Option "MaxTapTime" "180"
EndSection

4

Re: Touchpad doesn't work (cursor does not move)

Hello Maran. Thank you for your feedback, I will keep in mind that two options work.