Imported Upstream version 1.15.1
[deb_xorg-server.git] / config / 10-evdev.conf
CommitLineData
a09e091a
JB
1#
2# Catch-all evdev loader for udev-based systems
3# We don't simply match on any device since that also adds accelerometers
4# and other devices that we don't really want to use. The list below
5# matches everything but joysticks.
6
7Section "InputClass"
8 Identifier "evdev pointer catchall"
9 MatchIsPointer "on"
10 MatchDevicePath "/dev/input/event*"
11 Driver "evdev"
12EndSection
13
14Section "InputClass"
15 Identifier "evdev keyboard catchall"
16 MatchIsKeyboard "on"
17 MatchDevicePath "/dev/input/event*"
18 Driver "evdev"
19EndSection
20
21Section "InputClass"
22 Identifier "evdev touchpad catchall"
23 MatchIsTouchpad "on"
24 MatchDevicePath "/dev/input/event*"
25 Driver "evdev"
26EndSection
27
28Section "InputClass"
29 Identifier "evdev tablet catchall"
30 MatchIsTablet "on"
31 MatchDevicePath "/dev/input/event*"
32 Driver "evdev"
33EndSection
34
35Section "InputClass"
36 Identifier "evdev touchscreen catchall"
37 MatchIsTouchscreen "on"
38 MatchDevicePath "/dev/input/event*"
39 Driver "evdev"
40EndSection