How to set Trackpad settings?

There seems to be no GUI for Trackpad settings.
Before I deploy a solution I know works -

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"
EndSection

EOF

Is there a different way to resolve the issue?
Thank you

I’ve got the following:

Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "Tapping" "True"
Option "Natural Scrolling" "True"
Option "Accel Speed" "0.400000"
EndSection

in /etc/X11/xorg.conf.d/90-libinput.conf for my touchpad on i3wm.

2 Likes