wok view 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
line source
1 # Catchall classes for input devices
2 # We don't simply match on any device since that also adds accelerometers
3 # and other devices that we don't really want to use. The list below
4 # matches everything.
6 Section "InputClass"
7 Identifier "evdev pointer catchall"
8 MatchIsPointer "on"
9 MatchDevicePath "/dev/input/event*"
10 Driver "evdev"
11 EndSection
13 Section "InputClass"
14 Identifier "evdev keyboard catchall"
15 MatchIsKeyboard "on"
16 MatchDevicePath "/dev/input/event*"
17 Driver "evdev"
18 Option "XkbOptions" "terminate:ctrl_alt_bksp"
19 EndSection
21 Section "InputClass"
22 Identifier "evdev touchpad catchall"
23 MatchIsTouchpad "on"
24 MatchDevicePath "/dev/input/event*"
25 Driver "evdev"
26 EndSection
28 Section "InputClass"
29 Identifier "evdev tablet catchall"
30 MatchIsTablet "on"
31 MatchDevicePath "/dev/input/event*"
32 Driver "evdev"
33 EndSection
35 Section "InputClass"
36 Identifier "evdev touchscreen catchall"
37 MatchIsTouchscreen "on"
38 MatchDevicePath "/dev/input/event*"
39 Driver "evdev"
40 EndSection
42 Section "InputClass"
43 Identifier "evdev joystick catchall"
44 MatchIsJoystick "on"
45 MatchDevicePath "/dev/input/event*"
46 Driver "evdev"
47 EndSection
49 # Accelerometer device, posts data through ABS_X/ABS_Y, making X unusable
50 # http://bugs.freedesktop.org/show_bug.cgi?id=22442
51 Section "InputClass"
52 Identifier "ThinkPad HDAPS accelerometer blacklist"
53 MatchProduct "ThinkPad HDAPS accelerometer data"
54 Option "Ignore" "on"
55 EndSection