Post by j***@verizon.netPost by J.O. AhoPost by j***@verizon.netI have a Dell Latitude E5430 laptop with Antix 19.2 version
of Linux installed.
There is NO way to disable the "touch click" via Mouse setting,
Depending on your desktop environment you should have a touchpad
specific settings with options for tap to click. If you happen to use
1. Select the System settings from your start menu
2. Scroll down to "Input Devices" and click on it
3. From the new sub-menu select "Touchpad"
4. In the "Taps" tab you will find the first options to be "Tap to
click", change those values to none or adjust the "single tap timeout"
which is the last option.
I could NOT find "Input Devices" (AntiX 19.2 rox-icewm) using your
procedure.
The example was specific for KDE Plasma, things are different in
different desktop environments and wm do not incorporate any such
configuration at all. As far as I know rox+icewm do not supply any
configuration for the synaptics touchpad, so you will need to configure
your Xorg manually
Much depends on how the Xorg is configured in AntiX, either it's a
monolithic configuration /etc/X11/xorg.conf or stripped down
configurations sections in /etc/X11/xorg.conf.d
The avaible options you can pick from you will find at the following web
page: https://jlk.fjfi.cvut.cz/arch/manpages/man/synaptics.4
Your configuration could be something like (example don't really solve
your problem):
Section "InputClass"
Identifier "touchpad"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "3"
Option "TapButton3" "2"
Option "VertEdgeScroll" "on"
Option "VertTwoFingerScroll" "on"
Option "HorizEdgeScroll" "on"
Option "HorizTwoFingerScroll" "on"
Option "CircularScrolling" "on"
Option "CircScrollTrigger" "2"
Option "EmulateTwoFingerMinZ" "40"
Option "EmulateTwoFingerMinW" "8"
Option "CoastingSpeed" "0"
Option "FingerLow" "30"
Option "FingerHigh" "50"
Option "MaxTapTime" "1"
EndSection
When yo do the configuration changes, it will be applied at startup of
Xorg and any change you make will require a restart of Xorg.
For more details how to configure things, please visit the Arch Linux
wiki page: https://wiki.archlinux.org/index.php/Touchpad_Synaptics
There are some tools listed for configuring the touchpad, but in your
setup they will just be temporary changes, which you would need to
script when you start rox, but those changes you make do not require a
restart of Xorg.
Post by j***@verizon.netI found, "Synaptic Package Manager" with a HUGE variety of "stuff"
under various categories such as "Amateur Radio", "Communication", etc.
No, synaptic is a package manager and has nothing to do with synaptics
(the s in the end makes big difference). Synaptic package manager is
used to install, update and uninstall applications on your system.
--
//Aho