Jump to content
Compatible Support Forums
Sign in to follow this  
geobeck

Need suggestion for compatible ambidexterous mouse

  

  1. 1. Sharepoint migration 2010

    • Migrating to Sharepoint 2010
      0


Recommended Posts

I've been having problems with arm stiffness recently, and I need a recommendation for a good Linux-compatible mouse that I can operate with either hand. I prefer a trackball or touchpad to a conventional mouse because of restricted desk space.

 

I've tried a Logitech Marble Mouse, which is great for basic mouse operations, but cannot scroll in Linux, and a Cirque Smart Cat touch pad, which is the best Windows solution I've found, but also unable to perform more than basic mouse functions in Linux.

 

To summarize, I need a non-conventional mouse that is not ergonomically shaped to fit your right hand, and is capable of advanced scrolling, zooming, etc. in Linux. (Specifically Mandrake 9.1)

 

Thanks in advance for any recommendations anyone might have.

Share this post


Link to post

Pretty much any mouse with any number of buttons can be made to work with Linux if you're prepared to do some config file editing. I suggest you go and try each of your options and see which one you're most comfortable with before coming back and asking us how to make all the buttons work wink

Share this post


Link to post

Sounds good. I'lve decided to keep the Logitech Marble Mouse. It's about the only ambidexterous mouse alternative I've been able to find (except for a couple of touch pads available over the Net, but I like to buy locally if I can).

 

I'll try and locate my mouse config files, crack them open, and see what i can figure out.

Share this post


Link to post

For X, the mouse configuration is located in the XF86Config file. Here's what mine looks like for my MS Intellimouse Explorer:

 

Code:
Section "InputDevice"# Identifier and driver    Identifier	"Mouse1"    Driver "mouse"    Option "Protocol"    "ExplorerPS/2"    Option "Device"      "/dev/mouse"    Option "Buttons"	 "7"    Option "ZAxisMapping""6 7"EndSection

 

(Theres a fair bit of other stuff in there relating to the mouse but much of that's commented and not only that but pretty much irrelevent as well)

 

The setting for your Logitech probably and most likely are quite different so I suggest doing some Googling to find out the appropriate settings. The other thing I use for my Explorer is a little program called imwheel to allow me to use my two thumb buttons. To make that work (assuming it's installed rpm -qa | grep imwheel in a terminal as root will quickly verify if it has or not, if the command produces output then it's installed) I add the following to lines to my /etc/X11/xinit/xinitrc file:

 

Code:
imwheel -k -p -b "67" &xmodmap -e "pointer = 1 2 3 6 7 4 5" &

 

Againg, the correct settings may be a little different for your Logitech so I recommend again turning to Google for a second opinion before trying my examples.

Share this post


Link to post

The other place to edit mouse related info is with gpm, the console mouse driver, but if you don't use this already you probably won't want to (it doesn't play nice with modern graphics cards) so it's not worrying about.

Share this post


Link to post

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×