mirror of
https://github.com/X11Libre/xf86-input-libinput.git
synced 2026-03-24 17:44:05 +00:00
If we install the config file by default, we shouldn't use libinput for devices we know we can't handle. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
29 lines
788 B
Plaintext
29 lines
788 B
Plaintext
# 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
|