Advertisement
corrosiontears

Desabilitar Tap to Click touchpad via Xorg

Jun 28th, 2013
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ##One way to do it is by adding a file called 10-synaptics.conf in the directory /etc/X11/xorg.conf.d (create the ##directory if it does not exist). In this file you can put something like
  2.  
  3. Section "InputClass"
  4.     Identifier "touchpad catchall"
  5.     Driver "synaptics"
  6.     MatchIsTouchpad "on"
  7.     MatchDevicePath "/dev/input/event*"
  8.     Option "MaxTapTime"             "0"
  9. EndSection
  10.  
  11. ##if MaxTapTime is the option you want to set. Note that the name of the file is not important, and you could as well ##use 10-notouchpadtap.conf. The number however is used to define the order in which the configuration files are used ##by the system.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement