Last active
November 29, 2022 15:39
-
-
Save khatchad/40abd7d571ab2f63ad7669d38c529435 to your computer and use it in GitHub Desktop.
Relatively working libinput configuration for the touchpad on Dell XPS 9320 running Ubuntu.
This file contains 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 joysticks | |
# | |
# If you want to configure your devices, do not copy this file. | |
# Instead, use a config snippet that contains something like this: | |
# | |
# Section "InputClass" | |
# Identifier "something or other" | |
# MatchDriver "libinput" | |
# | |
# MatchIsTouchpad "on" | |
# ... other Match directives ... | |
# Option "someoption" "value" | |
# EndSection | |
# | |
# This applies the option any libinput device also matched by the other | |
# directives. See the xorg.conf(5) man page for more info on | |
# matching devices. | |
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*" | |
Option "Tapping" "true" | |
Option "TappingDrag" "true" | |
Option "DisableWhileTyping" "true" | |
Option "AccelProfile" "adaptive" | |
Option "AccelSpeed" "0.4" | |
Option "SendEventsMode" "disabled-on-external-mouse" | |
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment