mirror of
https://github.com/goodtft/LCD-show.git
synced 2024-11-29 02:24:12 +01:00
37 lines
1013 B
Plaintext
37 lines
1013 B
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"
|
||
|
EndSection
|
||
|
|
||
|
Section "InputClass"
|
||
|
Identifier "libinput touchscreen catchall"
|
||
|
MatchIsTouchscreen "on"
|
||
|
Option "CalibrationMatrix" "1 0 0 0 -1 1 0 0 1"
|
||
|
MatchDevicePath "/dev/input/event*"
|
||
|
Driver "libinput"
|
||
|
EndSection
|
||
|
|
||
|
Section "InputClass"
|
||
|
Identifier "libinput tablet catchall"
|
||
|
MatchIsTablet "on"
|
||
|
MatchDevicePath "/dev/input/event*"
|
||
|
Driver "libinput"
|
||
|
EndSection
|