https://bugs.kde.org/show_bug.cgi?id=356689

--- Comment #5 from slartibar...@gmail.com ---
@Christoph Obexer
Systemsettings is still not able to provide the appropriate settings via a GUI.
But libinput has evolved and you can set all things via script...depending on
what your devices provide as options.
My touchpad and mouse problems with left/right handedness and emulation of
buttons on the touchpad are addressed by the following script:

#! /bin/bash
device="SynPS/2 Synaptics TouchPad"
touchpadId=$(xinput --list | grep "${device}" | cut -f2 | cut -d= -f2)
xinput set-prop $touchpadId "libinput Click Method Enabled" 0 1
xinput set-prop $touchpadId "libinput Left Handed Enabled" 1

There are plenty of settings available, have a look with: 
xinput --list-props <id> # id being your device number
Have a look at the libinput project website as well, e.g. here: 
https://wayland.freedesktop.org/libinput/doc/latest/pointer-acceleration.html
Hope this helps

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to