On my Macbook I can only move the cursor while also pressing the touchpad after a default install. A per login session fix is to run "synclient FingerLow=10" and "synclient FingerHigh=20".
In order to make this change permanent I'm supposed to do add the following in the tochpad section of /usr/lib/X11/xorg.conf.d/10-synaptics.conf
. But I do not have this file.
Section "InputClass"
Identifier "touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "synaptics"
Option "FingerLow" "10"
Option "FingerHigh" "20"
EndSection
/usr/share/X11/xorg.conf.d/50-synaptics.conf
file? – Avinash Raj Mar 08 '14 at 10:19it when updating. Copy (and rename) this file into
/etc/X11/xorg.conf.d first.
Additional options may be added in the form of
Option "OptionName" "value"`
– Avinash Raj Mar 08 '14 at 11:12