ALPS touchpad generaly have slower response when compared to the synaptic based touchpads.

Here’s a simple X hack to boost the sensitivity of my ALPS touchpad which has dramatically improved my experience with my touchpad. This worked on my openSUSE 10.3

1. First, check if you really do have a ALPS touchpad.

cat /proc/bus/input/devices | grep ALPS

sample output;

N: Name="AlpsPS/2 ALPS GlidePoint"

2. Make a backup of your xorg.conf file.

cp /etc/X11/xorg.conf  /etc/X11/xorg.conf.bkp

3. Edit the xorg.conf file.

vi /etc/X11/xorg.conf

4. Navigate to the InputDevice Section and look for the “synaptics” driver portion.

5. Replace everything between the Identifier line and EndSection with the settings below.

Section "InputDevice"
   Identifier   "Synaptics Touchpad"
########################################Start replace from here
   Driver       "synaptics"
   Option       "SendCoreEvents"        "true"
   Option       "Device"                "/dev/psaux"
   Option       "Protocol"              "auto-dev"

   Option       "LeftEdge"              "130"
   Option       "RightEdge"             "840"
   Option       "TopEdge"               "130"
   Option       "BottomEdge"            "640"
   Option       "FingerLow"             "14"
   Option       "FingerHigh"            "15"
   Option       "MaxTapTime"            "180"
   Option       "MaxTapMove"            "110"
   Option       "ClickTime"             "0"
   Option       "MaxDoubleTapTime"      "100"
   Option       "EmulateMidButtonTime"  "75"
   Option       "VertScrollDelta"       "20"
   Option       "HorizScrollDelta"      "20"
   Option       "MinSpeed"              "0.60"
   Option       "MaxSpeed"              "1.10"
   Option       "AccelFactor"           "0.030"
   Option       "EdgeMotionMinSpeed"    "200"
   Option       "EdgeMotionMaxSpeed"    "200
   Option       "UpDownScrolling"       "1"
   Option       "CircularScrolling"     "1"
   Option       "CircScrollDelta"       "0.1"
   Option       "CircScrollTrigger"     "2"
   Option       "SHMConfig"             "true"
   Option       "Emulate3Buttons"       "on"
########################################End replace here
EndSection

Here’s a screenshot of my xorg.conf file.

These icons link to social bookmarking sites where readers can share and discover new web pages.
  • bodytext
  • del.icio.us
  • BlinkList
  • Reddit
  • Slashdot
  • StumbleUpon
  • Technorati
  • Furl
  • Google
  • Live
  • Facebook
  • Pownce
  • TwitThis
  • E-mail this story to a friend!
Tags: , , , , ,

Related posts