From 14172782c91ac2c732fa7ab0cb380e251b634001 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 16 Jun 2026 13:13:41 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20correct=20xorg=20MatchProduct=20glob=20?= =?UTF-8?q?=E2=80=94=20Wacom*Finger*=20not=20Wacom.*Finger?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- ubuntu-based-kiosk-v1.0.3.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ubuntu-based-kiosk-v1.0.3.sh b/ubuntu-based-kiosk-v1.0.3.sh index f69949e..e6cdcc1 100644 --- a/ubuntu-based-kiosk-v1.0.3.sh +++ b/ubuntu-based-kiosk-v1.0.3.sh @@ -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"