Ubuntu – Sluggish/unresponsive trackpad on pre-unibody MacBook Pro

11.04hardwaremacbooktrackpad

I am running Ubuntu Natty Narwhal on pre-unibody MacBook Pro (2007 I believe).

There seems to be a problem with trackpad – it barely works, in order to move cursor you have to move your finger a lot, and it terminates the 'gestures' abruptly – say you are moving the cursor with your finger and out of the blue it just stops, although the finger is still in contact with the surface of the trackpad.

Those issues seem to dissapear as soon as I boot Mac OS X, so I suspect it is something Ubuntu-specific.

Also, if I try to move the cursor with not just fingertip but increase the contact area, it seems to work just fine, although it is hardly convenient.

Best Answer

user35553 is right, setting the FingerHigh and FingerLow values via synclient should produce the effect you're after.

synclient is a con­ve­nient way to play around with the var­i­ous options the Synap­tics dri­ver offers, but if you’re happy with your changes, you’ll prob­a­bly want to make them per­ma­nent for all users rather than run­ning synclient manually or at login.

Normally you'd do that via the xorg.conf file, but Ubuntu, along with sev­eral other dis­tros, has effec­tively dep­re­cated the use of xorg.conf in favour of device-specific scripts inside /usr/share/X11/xorg.conf.d. You may or may not have this direc­tory, and if you do, you may or may not already have a file inside it called 50-synaptics.conf. Cre­ate the direc­tory if nec­es­sary, then open the file (sub­sti­tut­ing gedit for your edi­tor of choice):

sudo mkdir /usr/share/X11/xorg.conf.d
sudo gedit /usr/share/X11/xorg.conf.d/50-synaptics.conf

Edit the file to include Option lines that set your desired Fin­ger­High and Fin­ger­Low val­ues. Mine looks like this:

Section "InputClass"
    Identifier "touchpad catchall"
    Driver "synaptics"
    MatchIsTouchpad "on"
    MatchDevicePath "/dev/input/event*"
    Option "FingerLow" "10"
    Option "FingerHigh" "16"
EndSection

Save the file, and when you restart, your new set­tings will apply every­where in X.