7d26105
# Catchall classes for input devices
7d26105
# We don't simply match on any device since that also adds accelerometers
7d26105
# and other devices that we don't really want to use. The list below
7d26105
# matches everything but joysticks.
72321b5
72321b5
Section "InputClass"
7d26105
        Identifier "evdev pointer catchall"
7d26105
        MatchIsPointer "on"
ee22717
        MatchDevicePath "/dev/input/event*"
7d26105
        Driver "evdev"
7d26105
EndSection
7d26105
7d26105
Section "InputClass"
7d26105
        Identifier "evdev keyboard catchall"
7d26105
        MatchIsKeyboard "on"
ee22717
        MatchDevicePath "/dev/input/event*"
7d26105
        Driver "evdev"
7d26105
EndSection
7d26105
7d26105
Section "InputClass"
7d26105
        Identifier "evdev touchpad catchall"
7d26105
        MatchIsTouchpad "on"
ee22717
        MatchDevicePath "/dev/input/event*"
7d26105
        Driver "evdev"
7d26105
EndSection
7d26105
7d26105
Section "InputClass"
7d26105
        Identifier "evdev tablet catchall"
7d26105
        MatchIsTablet "on"
ee22717
        MatchDevicePath "/dev/input/event*"
7d26105
        Driver "evdev"
7d26105
EndSection
7d26105
7d26105
Section "InputClass"
7d26105
        Identifier "evdev touchscreen catchall"
7d26105
        MatchIsTouchscreen "on"
ee22717
        MatchDevicePath "/dev/input/event*"
72321b5
        Driver "evdev"
72321b5
EndSection