123456789101112131415161718192021222324252627282930313233343536373839 |
- # 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
|