Thursday, May 2, 2024
 Popular · Latest · Hot · Upcoming
3
rated 0 times [  3] [ 0]  / answers: 1 / hits: 5447  / 2 Years ago, wed, december 1, 2021, 8:36:00

I am trying make Apple Trackpad more usable for my needs. So did set the



motion-acceleration to 120 and

motion-threshold to -500


as suggested here and shown in the image below.



enter image description here



The speed of the pointer is still slow so I did some more research and found the mouse speed is a different parameter and known as resolution as explained here.



My Question



How can increase the speed of mouse pointer for trackpad in Ubuntu 12.04.01?


More From » mouse

 Answers
7

From the synaptics man page:



Acceleration



       The MinSpeed, MaxSpeed and AccelFactor parameters control  the  pointer
motion speed. The speed value defines the scaling between touchpad
coordinates and screen coordinates. When moving the finger very
slowly, the MinSpeed value is used, when moving very fast the MaxSpeed
value is used. When moving the finger at moderate speed, you get a
pointer motion speed somewhere between MinSpeed and MaxSpeed. If you
don't want any acceleration, set MinSpeed and MaxSpeed to the same
value.


Let's try it!



$ gksudo gedit /etc/X11/xorg.conf


If you have no xorg.conf file create an empty one. Add something similar to this and play around with the parameters.



Section "InputClass"
Identifier "Touchpad"
Driver "synaptics"
MatchIsTouchpad "on"
Option "VertTwoFingerScroll" "on"
Option "HorizTwoFingerScroll" "on"
Option "VertScrollDelta" "85"
Option "HorizScrollDelta" "85"
Option "TapButton1" "0"
Option "TapButton2" "0"
Option "TapButton3" "0"
Option "MinSpeed" "0.7"
Option "MaxSpeed" "1.4"
Option "AccelFactor" "0.1"
EndSection


It's possible that the Identifier should be set to "Apple Magic Trackpad" but I'm not sure. I think "Touchpad" should work.



You should also know that I pulled these numbers in the proposed config out of thin air and that a gazillion options are available.



You can test Options for your current session with synclient. This way you don't have to restart X for the changes to take effect. Once you are happy with the parameters you can add/edit/remove them to your xorg.conf to make them permanent.



I am not sure if synclient is installed by default.



$ sudo apt-get install synclient


temporarily enable SHMConfig



$ synclient SHMConfig=1


test options. for example MinSpeed



$ synclient MinSpeed=0.5


for a detailed list of options and their values run



$ man synaptics


press j to scroll down



press k to scroll up



press / to search for a string, press n for next match, p for previous match



press ? for reverse search



press q to quit



Enjoy


[#32620] Thursday, December 2, 2021, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
barted

Total Points: 424
Total Questions: 103
Total Answers: 101

Location: Djibouti
Member since Sun, Feb 27, 2022
2 Years ago
barted questions
;