I3 touchpad settings

hi new to i3, how do i allow touchpad to tap to click with edge scrolling please.
tried dmenu no results for any kind of system settings

you will need to add this line too:

Option "ScrollMethod" "edge"

final command should probably look something like this:

sudo mkdir -p /etc/X11/xorg.conf.d && sudo tee <<'EOF' /etc/X11/xorg.conf.d/90-touchpad.conf 1> /dev/null
Section "InputClass"
        Identifier "touchpad"
        MatchIsTouchpad "on"
        Driver "libinput"
        Option "Tapping" "on"
        Option "ScrollMethod" "edge"
EndSection

EOF
2 Likes

thankyou, searched for an hour and found nothing like the above.
what is EOF please?

1 Like

End Of File

1 Like