| Summary: | Support for libinput backend missing, touch feature tweaks and mapping not good on xf86-input-wacom | ||
|---|---|---|---|
| Product: | [Applications] systemsettings | Reporter: | Raghavendra kamath <raghu> |
| Component: | kcm_wacomtablet | Assignee: | Valerii Malov <jazzvoid> |
| Status: | REPORTED --- | ||
| Severity: | normal | CC: | arkonbob |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Other | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Raghavendra kamath
2020-12-13 04:49:07 UTC
Best approach is to split handling of the tablet. Touch will be handled by libinput, stylus by xf86-wacom:
Create a file named /etc/X11/xorg.conf.d/90-libinput-wacom.conf with the following contents, and then reboot:
```
Section "InputClass"
Identifier "libinput Wacom touchpad override class"
MatchUSBID "056a:*"
MatchDevicePath "/dev/input/event*"
MatchIsTouchpad "true"
Driver "libinput"
EndSection
```
Source:
https://github.com/linuxwacom/xf86-input-wacom/issues/28#issuecomment-420737038
There is one issue, if you have a libinput touchpad, that will be replaced in KDE settings with the Wacom Touchpad (I'm about to create a bug report for that).
|