How to disable touchpad tapping in antiX 17?
Posted: Fri Feb 23, 2018 10:19 am
Hi.
How do I disable touchpad tapping in antiX 17?
Thanks.
How do I disable touchpad tapping in antiX 17?
Thanks.
Support for MX and antiX Linux distros
https://www.forum.mxlinux.org/
Code: Select all
$ syndaemon -i 0.5 -t -K -R
Hi DO. I'd rather permanently disable tapping.dolphin_oracle wrote:I use syndameon for this.
from the arch wiki:
https://wiki.archlinux.org/index.php/To ... ile_typing
For example, to disable tapping and scrolling for 0.5 seconds after each keypress (ignoring modifier keys like Ctrl), useCode: Select all
$ syndaemon -i 0.5 -t -K -R
Code: Select all
Option "TouchpadOff" "2"
I did that (but used the "1" option) and it borked something. I no longer get a graphical desktop. I can login via terminal but startx does nothing.dolphin_oracle wrote:in the /etc/X11/xorg.conf.d/synaptics.conf file, and then log out and log in should do the trick.Code: Select all
Option "TouchpadOff" "2"
...
I put a # in front of the original line and kept the "1" inline with the other options.dolphin_oracle wrote:Did you put the option in line with the other options in the file?
I tried it here and it certainly turned of tapping and scrolling.
Otherwise, I guess take it back out.
Code: Select all
Section "InputClass"
Identifier "Touchpad" # required
MatchIsTouchpad "yes" # required
Driver "synaptics" # required
Option "MinSpeed" "0.5"
Option "MaxSpeed" "1.0"
Option "AccelFactor" "0.075"
Option "TapButton1" "1"
Option "TapButton2" "2" # multitouch
Option "TapButton3" "3" # multitouch
Option "VertTwoFingerScroll" "1" # multitouch
Option "HorizTwoFingerScroll" "1" # multitouch
Option "VertEdgeScroll" "1"
Option "CoastingSpeed" "8"
Option "CornerCoasting" "1"
Option "CircularScrolling" "1"
Option "CircScrollTrigger" "7"
Option "EdgeMotionUseAlways" "1"
Option "LBCornerButton" "8" # browser "back" btn
Option "RBCornerButton" "9" # browser "forward" btn
Option "TouchpadOff" "2" #turn off touchpad tapping and scrolling
EndSection
antiX thread.GuiGuy wrote:Why not use the GUI "Mouse and Touchpad" thoughtfully provided by MX?
My file is now identical to that. When I enter startx, I get 'waiting for X server to begin accepting connections' - the wait goes on for ages so I just shutdown the PC. I think I'll go back to Debian 9 LXDE.dolphin_oracle wrote:I don't see any existing line.
this is my file as edited.
Code: Select all
Section "InputClass" Identifier "Touchpad" # required MatchIsTouchpad "yes" # required Driver "synaptics" # required Option "MinSpeed" "0.5" Option "MaxSpeed" "1.0" Option "AccelFactor" "0.075" Option "TapButton1" "1" Option "TapButton2" "2" # multitouch Option "TapButton3" "3" # multitouch Option "VertTwoFingerScroll" "1" # multitouch Option "HorizTwoFingerScroll" "1" # multitouch Option "VertEdgeScroll" "1" Option "CoastingSpeed" "8" Option "CornerCoasting" "1" Option "CircularScrolling" "1" Option "CircScrollTrigger" "7" Option "EdgeMotionUseAlways" "1" Option "LBCornerButton" "8" # browser "back" btn Option "RBCornerButton" "9" # browser "forward" btn Option "TouchpadOff" "2" #turn off touchpad tapping and scrolling EndSection
Hello again DO. I really don't understand how editing that file caused such a mess for me. That's a pity. I've since moved back to vanilla Debian 9 Stable with LXDE.dolphin_oracle wrote:in the /etc/X11/xorg.conf.d/synaptics.conf file, and then log out and log in should do the trick.Code: Select all
Option "TouchpadOff" "2"
other options for that switch
Switch off the touchpad. Valid values are:
0 Touchpad is enabled
1 Touchpad is switched off
2 Only tapping and scrolling is switched off
more info here:
ftp://www.x.org/pub/X11R7.5/doc/man/man ... ics.4.html
Code: Select all
synclient TouchpadOff=1
Thank you, agrendel.agrendel wrote: Wed Jan 15, 2020 10:57 am Though these are old posts, in case anyone is searching for a solution to the accidental swiping of the Touchpad while typing, I tested dolphin_oracle's modification of the synaptics.conf files as shown above and under AntiX 19, it works with no problem and is a way to simply disable the Touchpad completely. Using synclient from the command line:has the same effect but is lost after a new login. Using a simple alias with bash could be a way of disabling then re-enabling the Touchpad by resetting the TouchpadOff parameter to "0" for it to work again. It is a simpler solution to using the touchpad-indicator program which doesn't seem to be in the standard repos for AntiX 19.Code: Select all
synclient TouchpadOff=1
Hopes this helps anyone looking for a solution to the annoying Touchpad interference while typing on a laptop.