wok-stable annotate xorg-xf86-input-evdev/stuff/40-evdev.conf @ rev 12352

xorg-xf86-input-evdev: fix X keyboard switcher (move XkbOptions from 40-evdev.conf to 40-Keyboard.conf (slitaz-tools/tinyutils/tazx))
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Nov 03 02:17:56 2012 +0000 (2012-11-03)
parents cf7fea36eaf8
children
rev   line source
gokhlayeh@5767 1 # Catchall classes for input devices
gokhlayeh@5767 2 # We don't simply match on any device since that also adds accelerometers
gokhlayeh@5767 3 # and other devices that we don't really want to use. The list below
gokhlayeh@5767 4 # matches everything.
gokhlayeh@5767 5
gokhlayeh@5767 6 Section "InputClass"
al@12352 7 Identifier "evdev pointer catchall"
al@12352 8 MatchIsPointer "on"
al@12352 9 MatchDevicePath "/dev/input/event*"
al@12352 10 Driver "evdev"
gokhlayeh@5767 11 EndSection
gokhlayeh@5767 12
gokhlayeh@5767 13 Section "InputClass"
al@12352 14 Identifier "evdev keyboard catchall"
al@12352 15 MatchIsKeyboard "on"
al@12352 16 MatchDevicePath "/dev/input/event*"
al@12352 17 Driver "evdev"
gokhlayeh@5767 18 EndSection
gokhlayeh@5767 19
gokhlayeh@5767 20 Section "InputClass"
al@12352 21 Identifier "evdev touchpad catchall"
al@12352 22 MatchIsTouchpad "on"
al@12352 23 MatchDevicePath "/dev/input/event*"
al@12352 24 Driver "evdev"
gokhlayeh@5767 25 EndSection
gokhlayeh@5767 26
gokhlayeh@5767 27 Section "InputClass"
al@12352 28 Identifier "evdev tablet catchall"
al@12352 29 MatchIsTablet "on"
al@12352 30 MatchDevicePath "/dev/input/event*"
al@12352 31 Driver "evdev"
gokhlayeh@5767 32 EndSection
gokhlayeh@5767 33
gokhlayeh@5767 34 Section "InputClass"
al@12352 35 Identifier "evdev touchscreen catchall"
al@12352 36 MatchIsTouchscreen "on"
al@12352 37 MatchDevicePath "/dev/input/event*"
al@12352 38 Driver "evdev"
gokhlayeh@5767 39 EndSection
gokhlayeh@5767 40
gokhlayeh@5767 41 Section "InputClass"
al@12352 42 Identifier "evdev joystick catchall"
al@12352 43 MatchIsJoystick "on"
al@12352 44 MatchDevicePath "/dev/input/event*"
al@12352 45 Driver "evdev"
gokhlayeh@5767 46 EndSection
gokhlayeh@5767 47
gokhlayeh@5767 48 # Accelerometer device, posts data through ABS_X/ABS_Y, making X unusable
gokhlayeh@5767 49 # http://bugs.freedesktop.org/show_bug.cgi?id=22442
gokhlayeh@5767 50 Section "InputClass"
al@12352 51 Identifier "ThinkPad HDAPS accelerometer blacklist"
al@12352 52 MatchProduct "ThinkPad HDAPS accelerometer data"
al@12352 53 Option "Ignore" "on"
gokhlayeh@5767 54 EndSection