Last active
October 30, 2019 15:03
-
-
Save miguelmota/bb2966afab8611fd68f0822fd7d8f853 to your computer and use it in GitHub Desktop.
LXDE Ubuntu disable touchpad tap click
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 make persistent, add this file | |
# sudo vim /usr/share/X11/xorg.conf.d/60-synaptics-options.conf | |
# with this contents: | |
Section "InputClass" | |
Identifier "touchpad catchall" | |
Driver "synaptics" | |
MatchIsTouchpad "on" | |
MatchDevicePath "/dev/input/event*" | |
Option "MaxTapTime" "0" | |
EndSection |
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
# run in terminal (only persists for session though) | |
synclient MaxTapTime=0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment