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

vnc2flv: Fixed WGET_URL.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Jun 25 09:39:04 2011 +0000 (2011-06-25)
parents
children 07ebf34f05f9
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"
gokhlayeh@5767 7 Identifier "evdev pointer catchall"
gokhlayeh@5767 8 MatchIsPointer "on"
gokhlayeh@5767 9 MatchDevicePath "/dev/input/event*"
gokhlayeh@5767 10 Driver "evdev"
gokhlayeh@5767 11 EndSection
gokhlayeh@5767 12
gokhlayeh@5767 13 Section "InputClass"
gokhlayeh@5767 14 Identifier "evdev keyboard catchall"
gokhlayeh@5767 15 MatchIsKeyboard "on"
gokhlayeh@5767 16 MatchDevicePath "/dev/input/event*"
gokhlayeh@5767 17 Driver "evdev"
gokhlayeh@5767 18 Option "XkbOptions" "terminate:ctrl_alt_bksp"
gokhlayeh@5767 19 EndSection
gokhlayeh@5767 20
gokhlayeh@5767 21 Section "InputClass"
gokhlayeh@5767 22 Identifier "evdev touchpad catchall"
gokhlayeh@5767 23 MatchIsTouchpad "on"
gokhlayeh@5767 24 MatchDevicePath "/dev/input/event*"
gokhlayeh@5767 25 Driver "evdev"
gokhlayeh@5767 26 EndSection
gokhlayeh@5767 27
gokhlayeh@5767 28 Section "InputClass"
gokhlayeh@5767 29 Identifier "evdev tablet catchall"
gokhlayeh@5767 30 MatchIsTablet "on"
gokhlayeh@5767 31 MatchDevicePath "/dev/input/event*"
gokhlayeh@5767 32 Driver "evdev"
gokhlayeh@5767 33 EndSection
gokhlayeh@5767 34
gokhlayeh@5767 35 Section "InputClass"
gokhlayeh@5767 36 Identifier "evdev touchscreen catchall"
gokhlayeh@5767 37 MatchIsTouchscreen "on"
gokhlayeh@5767 38 MatchDevicePath "/dev/input/event*"
gokhlayeh@5767 39 Driver "evdev"
gokhlayeh@5767 40 EndSection
gokhlayeh@5767 41
gokhlayeh@5767 42 Section "InputClass"
gokhlayeh@5767 43 Identifier "evdev joystick catchall"
gokhlayeh@5767 44 MatchIsJoystick "on"
gokhlayeh@5767 45 MatchDevicePath "/dev/input/event*"
gokhlayeh@5767 46 Driver "evdev"
gokhlayeh@5767 47 EndSection
gokhlayeh@5767 48
gokhlayeh@5767 49 # Accelerometer device, posts data through ABS_X/ABS_Y, making X unusable
gokhlayeh@5767 50 # http://bugs.freedesktop.org/show_bug.cgi?id=22442
gokhlayeh@5767 51 Section "InputClass"
gokhlayeh@5767 52 Identifier "ThinkPad HDAPS accelerometer blacklist"
gokhlayeh@5767 53 MatchProduct "ThinkPad HDAPS accelerometer data"
gokhlayeh@5767 54 Option "Ignore" "on"
gokhlayeh@5767 55 EndSection