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

Roman <subd...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
     Ever confirmed|0                           |1
             Status|UNCONFIRMED                 |CONFIRMED

--- Comment #4 from Roman <subd...@gmail.com> ---
For anyone interested, here a little tutorial how to do the configuration over
DBus:

# Get all possible InputDevice events:
qdbus org.kde.KWin.InputDevice

# For every such event check its name, until you find the one matching your
touchpad:
qdbus org.kde.KWin.InputDevice /org/kde/KWin/InputDevice/eventX
org.freedesktop.DBus.Properties.Get org.kde.KWin.InputDevice name

# For this one get current tapToClick value:
qdbus org.kde.KWin.InputDevice /org/kde/KWin/InputDevice/eventY
org.freedesktop.DBus.Properties.Get org.kde.KWin.InputDevice tapToClick

# It'll be false. So set it to true:
qdbus org.kde.KWin.InputDevice /org/kde/KWin/InputDevice/eventY
org.freedesktop.DBus.Properties.Set org.kde.KWin.InputDevice tapToClick true

# Confirm, that it changed to true:
qdbus org.kde.KWin.InputDevice /org/kde/KWin/InputDevice/eventY
org.freedesktop.DBus.Properties.Get org.kde.KWin.InputDevice tapToClick

When activated, also Multitouch works directly. Nice work, Martin. We've to
talk again about the touchpad KCM stuff some time in the future

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

Reply via email to