40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
# 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"
|
|
Option "DisableWhileTyping" "on"
|
|
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
|
|
|