37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
# Collection of quirks and blacklist/whitelists for specific devices.
|
|
|
|
|
|
# Accelerometer device, posts data through ABS_X/ABS_Y, making X unusable
|
|
# http://bugs.freedesktop.org/show_bug.cgi?id=22442
|
|
Section "InputClass"
|
|
Identifier "ThinkPad HDAPS accelerometer blacklist"
|
|
MatchProduct "ThinkPad HDAPS accelerometer data"
|
|
Option "Ignore" "on"
|
|
EndSection
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=523914
|
|
# Mouse does not move in PV Xen guest
|
|
# Explicitly tell evdev to not ignore the absolute axes.
|
|
Section "InputClass"
|
|
Identifier "Xen Virtual Pointer axis blacklist"
|
|
MatchProduct "Xen Virtual Pointer"
|
|
Option "IgnoreAbsoluteAxes" "off"
|
|
Option "IgnoreRelativeAxes" "off"
|
|
EndSection
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=612140
|
|
# please make Evoluent VerticalMouse 3 work out of the box
|
|
# Button mapping on this mouse is quirky
|
|
Section "InputClass"
|
|
Identifier "Evoluent VerticalMouse 3"
|
|
MatchProduct "Evoluent VerticalMouse 3"
|
|
# Sets following configuration:
|
|
# top button: left
|
|
# middle button: middle
|
|
# bottom button: right
|
|
# wheel click: middle
|
|
# thumb button: 8 (back)
|
|
Option "ButtonMapping" "1 2 2 4 5 6 7 3 8"
|
|
EndSection
|
|
|