LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   knoppix 5.3 (https://www.linuxquestions.org/questions/linux-newbie-8/knoppix-5-3-a-776420/)

philipgeiger 12-17-2009 08:32 AM

knoppix 5.3
 
have installed knoppix 5.3 but don't know how to slow down the mouse speed/sensitivity and where to find the correct file/location to make adjustments if possible. am using a serial /com port style mouse box is my dinosaur amd500 512mb ram ,160gb hard drive.any ideas/help would be appreciated.

raju.mopidevi 12-17-2009 09:27 AM

The syntax for setting the mouse acceleration and threshold using xset is

Code:

#xset m acceleration threshold
The first argument, "acceleration", is a multiplier number that defines how many times faster than the standard speed the cursor will move. Try numbers between 2 and 5, setting a high multiplier like 9 makes the mouse movements very jerky and jumpy. This does not need to be a whole number, you can use 1/2 to get half the standard speed or 5/2 (=2.5) if 2 is too slow and 3 is too fast.

The second argument, threshold, defines how many pixels the mouse must move in a short period of time before the acceleration setting is used. Using a threshold of 1, as in
Code:

#xset m 5 1
, disables this and gives you the same mouse speed at all times. Setting
Code:

#xset m 5 10
requires the mouse the move to move 10 pixels before the pointer is accelerated.

'
Code:

xset m 5 1
' is known to be a good setting.

Code:

xset m default
returns the standard setting.


Add xset to ~/.xinitrc to get your desired mouse speed when X starts.


All times are GMT -5. The time now is 01:48 AM.