Capturing input device disables two-fingers-for-right-click capability

385 Views Asked by At

I have a convertible laptop for which there isn't great Linux support: the desktop environment is unable to detect when the device is in tablet mode, so the keyboard and touchpad are always active, which makes tablet mode almost useless. I've solved this problem by writing a simple Python script that grabs the keyboard and mouse input devices and proxies events to the system until a specific key sequence is received. At this point, it stops proxying events until the same key sequence is seen again.

The code is effectively a slightly more complex version of this example (which reproduces the problem):

import evdev
import selectors

dev = evdev.InputDevice('/dev/input/event5')
ui = evdev.UInput.from_device(dev)
dev.grab()

selector = selectors.DefaultSelector()
selector.register(dev, selectors.EVENT_READ)

while True:
    for key, mask in selector.select(0.1):
        dev = key.fileobj

        for event in dev.read():
            cat = evdev.categorize(event)
            print(cat)
            ui.write_event(event)

/dev/input/event5 is the touchpad. The system has the following devices:

Available devices:
/dev/input/event0:      Lid Switch
/dev/input/event1:      Power Button
/dev/input/event2:      Sleep Button
/dev/input/event3:      Power Button
/dev/input/event4:      AT Translated Set 2 keyboard
/dev/input/event5:      SynPS/2 Synaptics TouchPad
/dev/input/event6:      Wacom HID 5072 Pen
/dev/input/event7:      Wacom HID 5072 Finger
/dev/input/event8:      HDA Intel PCH Mic
/dev/input/event9:      HDA Intel PCH Headphone
/dev/input/event10:     HDA Intel PCH HDMI/DP,pcm=3
/dev/input/event11:     PC Speaker
/dev/input/event12:     ThinkPad Extra Buttons
/dev/input/event13:     Integrated Camera: Integrated C
/dev/input/event14:     Video Bus

When this code runs, movements and regular click actions work just fine, but a two-fingered click, which normally acts like a right-button click, no longer works. Since this code is just taking events and re-sending them, why is this behavior different? How would I get the two-fingered click to work as expected?

1

There are 1 best solutions below

3
On

I think what you need is very similar to this, altered of course to your needs

Python_Touchscreen_RightClick.py

if this doesn't work for you you can also try and use Gesture Event from python-libinput