Skip to content

Instantly share code, notes, and snippets.

@miguelmota
Last active October 30, 2019 15:03
Show Gist options
  • Save miguelmota/bb2966afab8611fd68f0822fd7d8f853 to your computer and use it in GitHub Desktop.
Save miguelmota/bb2966afab8611fd68f0822fd7d8f853 to your computer and use it in GitHub Desktop.
LXDE Ubuntu disable touchpad tap click
# 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
# 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