fix: correct xorg MatchProduct glob — Wacom*Finger* not Wacom.*Finger

xorg uses fnmatch (shell glob) for MatchProduct, where . is a literal
dot. Wacom.*Finger never matched "Wacom HID 48E3 Finger touch" because
there is no literal dot in that string. Wacom*Finger* matches correctly.

https://claude.ai/code/session_01EyjEQLWbTXcZgbMDarf7NU
This commit is contained in:
Claude
2026-06-16 13:13:41 +00:00
parent 5cbade03d7
commit 14172782c9
+2 -2
View File
@@ -7373,7 +7373,7 @@ LAUNCHER
sudo tee /etc/X11/xorg.conf.d/99-wacom-touch.conf > /dev/null <<'WACFG'
Section "InputClass"
Identifier "Wacom Touch Settings"
MatchProduct "Wacom.*Finger"
MatchProduct "Wacom*Finger*"
Driver "wacom"
Option "Gesture" "on"
Option "Touch" "on"
@@ -11305,7 +11305,7 @@ upgrade_kiosk() {
sudo tee /etc/X11/xorg.conf.d/99-wacom-touch.conf > /dev/null <<'WACFG'
Section "InputClass"
Identifier "Wacom Touch Settings"
MatchProduct "Wacom.*Finger"
MatchProduct "Wacom*Finger*"
Driver "wacom"
Option "Gesture" "on"
Option "Touch" "on"