| Summary: | Automatic tablet mode does not work on some hardware | ||
|---|---|---|---|
| Product: | [Plasma] kwin | Reporter: | Danilo Luvizotto <danilo.luvizotto> |
| Component: | wayland-generic | Assignee: | KWin default assignee <kwin-bugs-null> |
| Status: | CONFIRMED --- | ||
| Severity: | normal | CC: | josh, nate, notmart |
| Priority: | NOR | ||
| Version First Reported In: | 5.27.1 | ||
| Target Milestone: | --- | ||
| Platform: | Arch Linux | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Danilo Luvizotto
2023-02-22 22:15:21 UTC
I just was told on the Plasma Matrix channel, there's a TAG that can be used in the udev rule so only Plasma will ignore a pointer device:
```
# FTS3528:00 2808:1015 UNKNOWN (tablet device)
ACTION=="add|change", KERNEL=="event[0-9]*", \
ATTRS{id/vendor}=="2808", \
ATTRS{id/product}=="1015", \
ATTRS{name}=="FTS3528:00 2808:1015 UNKNOWN", \
TAG+="kwin-ignore-tablet-mode"
# Valve Software Steam Controller (pointer device)
ACTION=="add|change", KERNEL=="event[0-9]*", \
ATTRS{id/vendor}=="28de", \
ATTRS{id/product}=="1205", \
ATTRS{name}=="Valve Software Steam Controller", \
TAG+="kwin-ignore-tablet-mode"
```
This is a much better workaround, but still not a fix.
|