Created
December 16, 2017 06:07
-
-
Save zikosw/1fe717e0ced7f9e94c449decd38ed14f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Match on all types of devices but tablet devices and joysticks | |
Section "InputClass" | |
Identifier "libinput pointer catchall" | |
MatchIsPointer "on" | |
MatchDevicePath "/dev/input/event*" | |
Option "NaturalScrolling" "true" | |
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*" | |
Option "Tapping" "true" | |
Option "ClickMethod" "clickfinger" | |
Option "NaturalScrolling" "true" | |
Driver "libinput" | |
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 |
Public utility contribution. You are a legend.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
you saved my life, and also my touchpad.