2018-10-25 21:12:09 +02:00
|
|
|
# Match on all types of devices but tablet devices and joysticks
|
|
|
|
Section "InputClass"
|
|
|
|
Identifier "libinput pointer catchall"
|
|
|
|
MatchIsPointer "on"
|
|
|
|
MatchDevicePath "/dev/input/event*"
|
|
|
|
Driver "libinput"
|
|
|
|
EndSection
|
|
|
|
|
|
|
|
Section "InputClass"
|
|
|
|
Identifier "libinput keyboard catchall"
|
|
|
|
MatchIsKeyboard "on"
|
|
|
|
MatchDevicePath "/dev/input/event*"
|
|
|
|
Driver "libinput"
|
|
|
|
EndSection
|
|
|
|
|
|
|
|
Section "InputClass"
|
|
|
|
Identifier "libinput touchpad catchall"
|
|
|
|
MatchIsTouchpad "on"
|
|
|
|
MatchDevicePath "/dev/input/event*"
|
|
|
|
Driver "libinput"
|
|
|
|
Option "Tapping" "on"
|
|
|
|
Option "ClickMethod" "clickfinger"
|
2018-10-26 04:43:01 +02:00
|
|
|
Option "DisableWhileTyping" "on"
|
2018-10-25 21:12:09 +02:00
|
|
|
EndSection
|
|
|
|
|
|
|
|
Section "InputClass"
|
|
|
|
Identifier "libinput touchscreen catchall"
|
|
|
|
MatchIsTouchscreen "on"
|
|
|
|
MatchDevicePath "/dev/input/event*"
|
|
|
|
Driver "libinput"
|
|
|
|
EndSection
|
|
|
|
|
|
|
|
Section "InputClass"
|
|
|
|
Identifier "libinput tablet catchall"
|
|
|
|
MatchIsTablet "on"
|
|
|
|
MatchDevicePath "/dev/input/event*"
|
|
|
|
Driver "libinput"
|
|
|
|
EndSection
|
|
|
|
|