Page 1 of 1

How to disable touchpad tapping in antiX 17?

Posted: Fri Feb 23, 2018 10:19 am
by Raymzap
Hi.

How do I disable touchpad tapping in antiX 17?

Thanks.

Re: How to disable touchpad tapping in antiX 17?

Posted: Fri Feb 23, 2018 10:21 am
by dolphin_oracle
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), use

Code: Select all

$ syndaemon -i 0.5 -t -K -R

Re: How to disable touchpad tapping in antiX 17?

Posted: Fri Feb 23, 2018 10:27 am
by Raymzap
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), use

Code: Select all

$ syndaemon -i 0.5 -t -K -R
Hi DO. I'd rather permanently disable tapping.

Re: How to disable touchpad tapping in antiX 17?

Posted: Fri Feb 23, 2018 10:34 am
by dolphin_oracle

Code: Select all

Option "TouchpadOff" "2"
in the /etc/X11/xorg.conf.d/synaptics.conf file, and then log out and log in should do the trick.

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

Re: How to disable touchpad tapping in antiX 17?

Posted: Fri Feb 23, 2018 1:15 pm
by Raymzap
dolphin_oracle wrote:

Code: Select all

Option "TouchpadOff" "2"
in the /etc/X11/xorg.conf.d/synaptics.conf file, and then log out and log in should do the trick.
...
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. :frown:

Re: How to disable touchpad tapping in antiX 17?

Posted: Fri Feb 23, 2018 1:20 pm
by dolphin_oracle
Did you put the option in line with the other options in the file?

I tried it here and it certainly turned off tapping and scrolling.


Otherwise, I guess take it back out.

Re: How to disable touchpad tapping in antiX 17?

Posted: Fri Feb 23, 2018 1:30 pm
by Raymzap
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.
I put a # in front of the original line and kept the "1" inline with the other options.

I also logged in via the terminal and re-edited the file to remove the new line and kept the original line without the # but something is still broken. :confused:

Re: How to disable touchpad tapping in antiX 17?

Posted: Fri Feb 23, 2018 1:31 pm
by Raymzap
Sorry, I removed the text here as it was a double post.

Re: How to disable touchpad tapping in antiX 17?

Posted: Fri Feb 23, 2018 1:36 pm
by dolphin_oracle
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

Re: How to disable touchpad tapping in antiX 17?

Posted: Fri Feb 23, 2018 1:42 pm
by Richard
antiX thread, only saw the 17.
Irrelevant post

Re: How to disable touchpad tapping in antiX 17?

Posted: Fri Feb 23, 2018 1:47 pm
by GuiGuy
Why does antiX not use the GUI "Mouse and Touchpad" thoughtfully provided by MX?

Re: How to disable touchpad tapping in antiX 17?

Posted: Fri Feb 23, 2018 1:50 pm
by dolphin_oracle
GuiGuy wrote:Why not use the GUI "Mouse and Touchpad" thoughtfully provided by MX?
antiX thread.

Re: How to disable touchpad tapping in antiX 17?

Posted: Fri Feb 23, 2018 1:58 pm
by GuiGuy
Yes :hitmyhead:, sorry :bagoverhead:

Re: How to disable touchpad tapping in antiX 17?

Posted: Fri Feb 23, 2018 2:53 pm
by Stevo
Does touchpad-indicator work in antiX?

http://mxrepo.com/mx/repo/pool/main/t/t ... indicator/

Re: How to disable touchpad tapping in antiX 17?

Posted: Fri Feb 23, 2018 3:27 pm
by Raymzap
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
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.

Re: How to disable touchpad tapping in antiX 17?

Posted: Sat Feb 24, 2018 2:48 pm
by Raymzap
dolphin_oracle wrote:

Code: Select all

Option "TouchpadOff" "2"
in the /etc/X11/xorg.conf.d/synaptics.conf file, and then log out and log in should do the trick.

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
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.

Edit: LXDE on Debian 9 Stretch has touchpad tapping off by default. :popcorn:

Re: How to disable touchpad tapping in antiX 17?

Posted: Wed Jan 15, 2020 10:57 am
by agrendel
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:

Code: Select all

synclient TouchpadOff=1
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.

Hopes this helps anyone looking for a solution to the annoying Touchpad interference while typing on a laptop.

Re: How to disable touchpad tapping in antiX 17?

Posted: Sun Jan 19, 2020 10:17 am
by Raymzap
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:

Code: Select all

synclient TouchpadOff=1
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.

Hopes this helps anyone looking for a solution to the annoying Touchpad interference while typing on a laptop.
Thank you, agrendel. :happy: