Change touchpad movement sensitivity in ubuntu

Before we start, it is important to make a backup of the file we are going to edit. If you make a mistake it is possible that your desktop environment will not start. So, open a terminal (Applications, Accessories, Terminal) and run the following command:

sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.backup_touchpad

If you do make a mistake and end up without a desktop environment (X won’t start) then simply hit ctrl+alt+F1 to get to a virtual terminal and run the following commands:

sudo cp /etc/X11/xorg.conf.backup_touchpad /etc/X11/xorg.conf
sudo /etc/init.d/gdm restart

You should probably write down the above commands if you don’t know what they mean.

Now that we backed up our xorg.conf file, we can get down to editing it. Run this command in a terminal:

sudo gedit /etc/X11/xorg.conf

Now find the place where it says something similar to:

Section "InputDevice"
Identifier  "Synaptics Touchpad"
Driver      "synaptics"
Option        "SendCoreEvents" "true"
Option        "Device" "/dev/psaux"
Option        "Protocol" "auto-dev"
EndSection

Add the following options before the “EndSection” text:

Option        "MinSpeed" "0.1"
Option        "MaxSpeed" "0.3"
Option        "AccelFactor" "0.0017"

Save the file and then restart X. You can restart X quickly with Ctrl + Alt + Backspace.

For more information about synaptic touchpads and more tweaking options check out this wiki.

6 Responses to “Change touchpad movement sensitivity in ubuntu”

  1. Alex N Says:

    Good advice!

  2. Fig Newton Says:

    WARNING! DO NOT EDIT YOUR XORG FILE UNLESS YOU KNOW HOW TO FIX IT! THIS WILL CAUSE LINUX TO NOT START!

  3. asdf Says:

    It does not cause linux to not start. It can only cause the X not to start.

  4. Luiz Miguel Axcar Says:

    Great advice pal, but there is a problem with quotes on 2nd and 3rd lines, please change it then ppl can copy/paste.

  5. vikrant Says:

    This worked for me except for the fact that it was too slow for me on mt dell 1420 running ubuntu 8.04 here are my settings which made my touchpad supers*xy,

    Option “MinSpeed” “0.5″
    Option “MaxSpeed” “0.9″
    Option “AccelFactor” “0.0017″

  6. How to Get Six Pack Fast Says:

    I noticed that this is not the first time at all that you write about the topic. Why have you decided to write about it again?

Leave a Reply