Mouse adjustments

Hi
Ive got trouble configuring mouse behavior.
How can i set:

  • singelclick delay ms/ speed ms
  • dubbelclick delay ms/ speed ms
  • sensitivity and movement speed

Im running a 64-bit Suse 11.0 Logitech Mx700 (oldie)

Cheers

The basic mouse is setup using “sax2” @ runlevel 3
Look at the howto for your video card to get started; also on that window you can select to config the mouse.

Then if you need to make even more fine tweaks, it may require editing the xorg.conf file:
see:
Search results - openSUSE
and:
google/linux <Linux> - Google Search](http://www.google.com/linux) for “mouse adjustments” or “Logitech mouse config linux”, etc

Example mine:


Section "InputDevice"
  Driver       "mouse"
  Identifier   "Mouse[1]"
  Option       "Buttons" "5"
  Option       "Device" "/dev/input/mice"
  Option       "Name" "ImPS/2 Generic Wheel Mouse"
  Option       "Protocol" "explorerps/2"
  Option       "Vendor" "Sysp"
  Option       "ZAxisMapping" "4 5"
EndSection

from the search I find:

Option “Resolution” “500”

The Resolution option will set the mouse device resolution to N counts per inch. Not all mice and OS support this option, and this forces this setting on all users. USB mouse generally do not support setting the mouse speed this way.

Then, I would add [Option “Resolution” “500” ] to my Section “InputDevice” above using and editor as root.

hope this helps…