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:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user