wok view xorg-xf86-input-evdev/stuff/40-evdev.conf @ rev 16315

ARM: add/up vala (0.24.0) + shared-mime-info (hope it will fix some gtk crash)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 09 14:57:01 2014 +0200 (2014-04-09)
parents cf7fea36eaf8
children
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 EndSection
20 Section "InputClass"
21 Identifier "evdev touchpad catchall"
22 MatchIsTouchpad "on"
23 MatchDevicePath "/dev/input/event*"
24 Driver "evdev"
25 EndSection
27 Section "InputClass"
28 Identifier "evdev tablet catchall"
29 MatchIsTablet "on"
30 MatchDevicePath "/dev/input/event*"
31 Driver "evdev"
32 EndSection
34 Section "InputClass"
35 Identifier "evdev touchscreen catchall"
36 MatchIsTouchscreen "on"
37 MatchDevicePath "/dev/input/event*"
38 Driver "evdev"
39 EndSection
41 Section "InputClass"
42 Identifier "evdev joystick catchall"
43 MatchIsJoystick "on"
44 MatchDevicePath "/dev/input/event*"
45 Driver "evdev"
46 EndSection
48 # Accelerometer device, posts data through ABS_X/ABS_Y, making X unusable
49 # http://bugs.freedesktop.org/show_bug.cgi?id=22442
50 Section "InputClass"
51 Identifier "ThinkPad HDAPS accelerometer blacklist"
52 MatchProduct "ThinkPad HDAPS accelerometer data"
53 Option "Ignore" "on"
54 EndSection