From 3f569ec493e738242da97afe30f7dd2a3b2b834d Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Tue, 26 Apr 2016 15:45:18 +1000 Subject: conf: rename to 60-libinput.conf 60 sorts higher than the other drivers (evdev has 10, synaptics, wacom and others have 50) so we keep the same order. This is part of a two-step solution, the other half is renaming the xf86-input-wacom's config snippet to sort higher than libinput's. Currently libinput picks up devices that are (for now) destined to the wacom driver. Since the wacom driver is more of a leaf package than libinput, the best option here is to make the wacom driver sort higher and let users uninstall it when not needed. To avoid crowding the 90-* space where users usually have custom config snippets, drop libinput down to 60 and bump wacom up. Signed-off-by: Peter Hutterer Acked-by: Jason Gerecke --- conf/60-libinput.conf | 28 ++++++++++++++++++++++++++++ conf/90-libinput.conf | 28 ---------------------------- 2 files changed, 28 insertions(+), 28 deletions(-) create mode 100644 conf/60-libinput.conf delete mode 100644 conf/90-libinput.conf (limited to 'conf') diff --git a/conf/60-libinput.conf b/conf/60-libinput.conf new file mode 100644 index 0000000..97afd07 --- /dev/null +++ b/conf/60-libinput.conf @@ -0,0 +1,28 @@ +# Match on all types of devices but tablet devices and joysticks +Section "InputClass" + Identifier "libinput pointer catchall" + MatchIsPointer "on" + MatchDevicePath "/dev/input/event*" + Driver "libinput" +EndSection + +Section "InputClass" + Identifier "libinput keyboard catchall" + MatchIsKeyboard "on" + MatchDevicePath "/dev/input/event*" + Driver "libinput" +EndSection + +Section "InputClass" + Identifier "libinput touchpad catchall" + MatchIsTouchpad "on" + MatchDevicePath "/dev/input/event*" + Driver "libinput" +EndSection + +Section "InputClass" + Identifier "libinput touchscreen catchall" + MatchIsTouchscreen "on" + MatchDevicePath "/dev/input/event*" + Driver "libinput" +EndSection diff --git a/conf/90-libinput.conf b/conf/90-libinput.conf deleted file mode 100644 index 97afd07..0000000 --- a/conf/90-libinput.conf +++ /dev/null @@ -1,28 +0,0 @@ -# Match on all types of devices but tablet devices and joysticks -Section "InputClass" - Identifier "libinput pointer catchall" - MatchIsPointer "on" - MatchDevicePath "/dev/input/event*" - Driver "libinput" -EndSection - -Section "InputClass" - Identifier "libinput keyboard catchall" - MatchIsKeyboard "on" - MatchDevicePath "/dev/input/event*" - Driver "libinput" -EndSection - -Section "InputClass" - Identifier "libinput touchpad catchall" - MatchIsTouchpad "on" - MatchDevicePath "/dev/input/event*" - Driver "libinput" -EndSection - -Section "InputClass" - Identifier "libinput touchscreen catchall" - MatchIsTouchscreen "on" - MatchDevicePath "/dev/input/event*" - Driver "libinput" -EndSection -- cgit v1.2.3