mikshaw
Group: Members
Posts: 4856
Joined: July 2004 |
|
Posted: Jan. 24 2007,14:40 |
|
Ahhhh. I haven't yet seen that tool. That explains a lot =o) Also I gave you wrong info. It is the xmodmap command that reverses the mouse buttons, and not xset.
The mouse config tool probably uses the xset and xmodmap commands to do (temporary?) changes to the mouse configuration. You can have these changes applied automatically by adding command(s) to .xinitrc, as I mentioned above. Use whatever text editor you like to do this. Just keep in mind that it is a "hidden" file not displayed by default in the gui file selectors, and that the command must be above the "case $DESKTOP" part of the file or else it will not work.
An example command:
Code Sample | xmodmap -e "pointer = 3 2 1" |
The above is for a 3-button mouse with no wheel. For a wheel, this should work:
Code Sample | xmodmap -e "pointer = 3 2 1 4 5" |
-------------- http://www.tldp.org/LDP/intro-linux/html/index.html
|