32 lines
929 B
Diff
32 lines
929 B
Diff
From c4f0a9bcb846f70b85a285e8acea8fe086abdccb Mon Sep 17 00:00:00 2001
|
|
From: Peter Hutterer <peter.hutterer@who-t.net>
|
|
Date: Tue, 1 Nov 2016 10:06:03 +1000
|
|
Subject: [PATCH xf86-input-libinput] conf: match against tablets too
|
|
|
|
Now that we sort below the xf86-input-wacom driver anyway, there's no good
|
|
reason to ignore tablets anymore.
|
|
|
|
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
|
|
---
|
|
conf/40-libinput.conf | 7 +++++++
|
|
1 file changed, 7 insertions(+)
|
|
|
|
diff --git a/conf/40-libinput.conf b/conf/40-libinput.conf
|
|
index 97afd07..7b7162e 100644
|
|
--- a/conf/40-libinput.conf
|
|
+++ b/conf/40-libinput.conf
|
|
@@ -26,3 +26,10 @@ Section "InputClass"
|
|
MatchDevicePath "/dev/input/event*"
|
|
Driver "libinput"
|
|
EndSection
|
|
+
|
|
+Section "InputClass"
|
|
+ Identifier "libinput tablet catchall"
|
|
+ MatchIsTablet "on"
|
|
+ MatchDevicePath "/dev/input/event*"
|
|
+ Driver "libinput"
|
|
+EndSection
|
|
--
|
|
2.9.3
|
|
|