Created
April 24, 2022 20:55
-
-
Save fellipec/6982ae8472d7cc73ad91f096617162e9 to your computer and use it in GitHub Desktop.
Enable tap to click Debian
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
To enable tap to click on touchpad using libinput create a file in Xorg config: | |
$ touch /etc/X11/xorg.conf.d/99-synaptics-overrides.conf | |
And add the following configuration: | |
Section "InputClass" | |
Identifier "touchpad overrides" | |
Driver "libinput" | |
MatchIsTouchpad "on" | |
Option "Tapping" "on" | |
Option "TappingButtonMap" "lmr" | |
EndSection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment