wok diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/xorg-xf86-input-evdev/stuff/40-evdev.conf	Sat Jun 25 09:39:04 2011 +0000
     1.3 @@ -0,0 +1,55 @@
     1.4 +# Catchall classes for input devices
     1.5 +# We don't simply match on any device since that also adds accelerometers
     1.6 +# and other devices that we don't really want to use. The list below
     1.7 +# matches everything.
     1.8 +
     1.9 +Section "InputClass"
    1.10 +        Identifier "evdev pointer catchall"
    1.11 +        MatchIsPointer "on"
    1.12 +        MatchDevicePath "/dev/input/event*"
    1.13 +        Driver "evdev"
    1.14 +EndSection
    1.15 +
    1.16 +Section "InputClass"
    1.17 +        Identifier "evdev keyboard catchall"
    1.18 +        MatchIsKeyboard "on"
    1.19 +        MatchDevicePath "/dev/input/event*"
    1.20 +        Driver "evdev"
    1.21 +	Option "XkbOptions" "terminate:ctrl_alt_bksp"
    1.22 +EndSection
    1.23 +
    1.24 +Section "InputClass"
    1.25 +        Identifier "evdev touchpad catchall"
    1.26 +        MatchIsTouchpad "on"
    1.27 +        MatchDevicePath "/dev/input/event*"
    1.28 +        Driver "evdev"
    1.29 +EndSection
    1.30 +
    1.31 +Section "InputClass"
    1.32 +        Identifier "evdev tablet catchall"
    1.33 +        MatchIsTablet "on"
    1.34 +        MatchDevicePath "/dev/input/event*"
    1.35 +        Driver "evdev"
    1.36 +EndSection
    1.37 +
    1.38 +Section "InputClass"
    1.39 +        Identifier "evdev touchscreen catchall"
    1.40 +        MatchIsTouchscreen "on"
    1.41 +        MatchDevicePath "/dev/input/event*"
    1.42 +        Driver "evdev"
    1.43 +EndSection
    1.44 +
    1.45 +Section "InputClass"
    1.46 +        Identifier "evdev joystick catchall"
    1.47 +        MatchIsJoystick "on"
    1.48 +        MatchDevicePath "/dev/input/event*"
    1.49 +        Driver "evdev"
    1.50 +EndSection
    1.51 +
    1.52 +# Accelerometer device, posts data through ABS_X/ABS_Y, making X unusable
    1.53 +# http://bugs.freedesktop.org/show_bug.cgi?id=22442 
    1.54 +Section "InputClass"
    1.55 +        Identifier "ThinkPad HDAPS accelerometer blacklist"
    1.56 +        MatchProduct "ThinkPad HDAPS accelerometer data"
    1.57 +        Option "Ignore" "on"
    1.58 +EndSection