summaryrefslogtreecommitdiff
path: root/packaging/evdev.conf
blob: 13c884e5b58e9c18f916843a4520187046a88491 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# 10-evdev.conf
# Catch-all evdev loader for udev-based systems
# We don't simply match on any device since that also adds accelerometers
# and other devices that we don't really want to use.
# The list below matches everything but joysticks.

Section "InputClass"
        Identifier	"evdev pointer catchall"
        MatchIsPointer	"on"
        MatchDevicePath	"/dev/input/event*"
        Driver		"evdev"
        Option          "Protocol" "Auto"       # Auto, ImPS/2 ('man mousedrv')
        Option          "ZAxisMapping" "4 5"
        Option          "AccelerationProfile"  "-1"     # man xorg.conf
EndSection

Section "InputClass"
        Identifier	"evdev keyboard catchall"
        MatchIsKeyboard "on"
        MatchDevicePath "/dev/input/event*"
        Driver		"evdev"
        Option          "Autorepeat" "250 30"
	Option		"XkbOptions" "terminate:ctrl_alt_bksp"
EndSection

Section "InputClass"
        Identifier "evdev touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev tablet catchall"
        MatchIsTablet "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchscreen catchall"
        MatchIsTouchscreen "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection