From 23c2c0d027ff2d87c201839b450a9a4ab68c0a49 Mon Sep 17 00:00:00 2001 From: ADAM David Alan Martin Date: Thu, 18 Jun 2026 09:05:11 -0400 Subject: [PATCH] Be a bit more flexible on touchpad matching. --- bin/setup-touch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/setup-touch.sh b/bin/setup-touch.sh index 4498e68..d5e0f4d 100755 --- a/bin/setup-touch.sh +++ b/bin/setup-touch.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash -DEVICE="$(xinput list --name-only | grep "Touchpad$")" +DEVICE="$(xinput list --name-only | grep -i "Touchpad$")" echo Device is ${DEVICE} xinput set-prop "${DEVICE}" "libinput Tapping Enabled" 1