Page 1 of 2 12 LastLast
Results 1 to 10 of 19

Thread: HOWTO: Adjust Touchpad Speed

  1. #1
    Join Date
    Aug 2006
    Location
    Canada
    Beans
    120
    Distro
    Ubuntu 6.10 Edgy

    HOWTO: Adjust Touchpad Speed

    This HOWTO is for people who are using synaptics for their laptop touchpad. Please someone correct me if I am wrong, but I believe that synaptics is installed by default for your laptop touchpad when you install Ubuntu 6.06.

    I decided to make this HOWTO after solving my own touchpad problem. The issue was that when I adjusted the mouse speed in Gnome via System->Preferences->Mouse->Motion there was no affect on the motion of my touchpad.

    Some quick searching revealed a lot of people having the same issue and I could not find any information on how to resolve it. A little sleuthing in my machine and I found the answer!

    Below I will show you how to adjust the way your touchpad reacts by editing your /etc/X11/xorg.conf file. I will also show you where to find more information on customizing your touchpad's behaviour.

    EDITING /etc/X11/xorg.conf

    There are many ways to edit files in Linux. To make it really easy I will use a text editor called gedit. (Normally I use vi but you can use whatever text editor you are comfortable with.)

    1. Open a terminal

    2. Type:
    Code:
    sudo gedit /etc/X11/xorg.conf
    3. You will be prompted for your password. Enter it.

    4. gedit will now open. You should scroll down until you see a section that looks somewhat like this:
    Code:
    Section "InputDevice"
    	Identifier  "Synaptics Touchpad"
    	Driver      "synaptics"
    	Option	    "SendCoreEvents" "true"
    	Option	    "Device" "/dev/psaux"
    	Option	    "Protocol" "auto-dev"
    	Option	    "HorizScrollDelta" "0"	
    EndSection
    5. What we need to do is add a couple of options. We will add one for MinSpeed, one for MaxSpeed and one for AccelFactor. The values that you give these options will determine the sensitivity of your touchpad. Here is my /etc/X11/xorg.conf entry for the touchpad:
    Code:
    Section "InputDevice"
    	Identifier  "Synaptics Touchpad"
    	Driver      "synaptics"
    	Option	    "SendCoreEvents" "true"
    	Option	    "Device" "/dev/psaux"
    	Option	    "Protocol" "auto-dev"
    	Option	    "HorizScrollDelta" "0"
    	Option	    "MinSpeed" "0.5"
    	Option	    "MaxSpeed" "0.5"
    #      Option      "AccelFactor" "0.0010"
    EndSection
    6. You can play with different values for MinSpeed, MaxSpeed and AccelFactor but keep in mind that they must be floating point values (decimal numbers) and that an entry of 1.0 is very fast! If you want acceleration then set the MinSpeed lower than the MaxSpeed and play with different values for AccelFactor.

    If you do not want acceleration then make your MinSpeed and MaxSpeed the same. (For good measure you can see that I have also commented out the AccelFactor option. Whenever you see a line with a # at the start of it that means that the rest of that line will be ignored by the system as a 'comment'.)

    7. Now you need to save the changes you have made to /etc/X11/xorg.conf and then close the file and reboot.

    8. Once you reboot try your new touchpad settings and make further adjustments to the /etc/X11/xorg.conf file until you have the perfect settings for you.

    For more information on other options for the touchpad type:
    Code:
    man synaptics
    or
    Code:
    gedit usr/share/doc/xserver-xorg-input-synaptics/README.Debian
    or
    Code:
    gedit /usr/share/doc/xserver-xorg-input-synaptics/README.alps
    I hope that this HOWTO has been helpful to you. If you have any questions please post them and I will do my best to help.

    Good luck and happy mousing!

  2. #2
    Join Date
    Aug 2006
    Beans
    11

    Re: HOWTO: Adjust Touchpad Speed

    Thanks for this information - I am a real n00b and this is the first forum help that I have been able to use - its clear, no assumptions, and best of all it solved my problem first try!

  3. #3
    Join Date
    Aug 2006
    Location
    Canada
    Beans
    120
    Distro
    Ubuntu 6.10 Edgy

    Re: HOWTO: Adjust Touchpad Speed

    I am happy to know I helped you.

    By the way here is the /etc/X11/xorg.conf settings that I have finally settled on for my touchpad. I find this works well for me on my laptop but you will have to see for yourself:

    Code:
    Section "InputDevice"
            Identifier  "Synaptics Touchpad"
            Driver      "synaptics"
            Option      "SendCoreEvents" "true"
            Option      "Device" "/dev/psaux"
            Option      "Protocol" "auto-dev"
            Option      "HorizScrollDelta" "0"
            Option      "MinSpeed" "0.5"
            Option      "MaxSpeed" "0.7"
            Option      "AccelFactor" "0.0350"
    EndSection

  4. #4
    Join Date
    Oct 2006
    Beans
    98
    Distro
    Ubuntu 7.04 Feisty Fawn

    Re: HOWTO: Adjust Touchpad Speed

    This guide helped me a lot.

  5. #5
    Join Date
    Aug 2006
    Location
    Canada
    Beans
    120
    Distro
    Ubuntu 6.10 Edgy

    Re: HOWTO: Adjust Touchpad Speed

    Glad to have helped!

  6. #6
    Join Date
    Apr 2005
    Beans
    Hidden!
    Distro
    Ubuntu

    Re: HOWTO: Adjust Touchpad Speed

    Another way to do it is to just add this to xorg.conf
    Option "SHMConfig" "on"

    Then apt-get install gsynaptics/qsynaptics/ksynaptics.

  7. #7
    Join Date
    Oct 2005
    Beans
    244
    Distro
    Ubuntu Development Release

    Talking Re: HOWTO: Adjust Touchpad Speed

    Quote Originally Posted by Rob2687 View Post
    Another way to do it is to just add this to xorg.conf
    Option "SHMConfig" "on"

    Then apt-get install gsynaptics/qsynaptics/ksynaptics.
    That's a killer tip, many, many thanks.

    And thanks also to adds2one for the original HOWTO.

    Cheers.

  8. #8
    Join Date
    Oct 2006
    Beans
    414

    Re: HOWTO: Adjust Touchpad Speed

    I'm curious....before you guys did that did you mouse kinds jiggle back and forth is short movments really fast when you rested your finger on it?

  9. #9
    Join Date
    Aug 2006
    Location
    Canada
    Beans
    120
    Distro
    Ubuntu 6.10 Edgy

    Re: HOWTO: Adjust Touchpad Speed

    Mine never did that. I just didn't like the 'action'.

  10. #10
    Join Date
    Dec 2007
    Location
    Canada
    Beans
    56
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: HOWTO: Adjust Touchpad Speed

    Thank you everyone.

    I kept my min the same and my max is 0.8 and acceleration is the same adn i'm happy.

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •