Skip to content

Instantly share code, notes, and snippets.

@fellipec
Created April 24, 2022 20:55
Show Gist options
  • Save fellipec/6982ae8472d7cc73ad91f096617162e9 to your computer and use it in GitHub Desktop.
Save fellipec/6982ae8472d7cc73ad91f096617162e9 to your computer and use it in GitHub Desktop.
Enable tap to click Debian
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