Hi all,

Noticed the below post on this website: http://www.linuxquestions.org/questions/history/21303

Can anyone confirm whether this will work under an LTSP environment? - I don't have a test server available at the moment.

Regards

L


Yes you can use the side buttons. I've just finished setting up my five button optical mouse after reading this post this morning and doing a bit of googling on the subject.
First you need to set up your mouse in XFree86 (version 4.2.0 is what I use), this is my pointer section,


code:
Identifier "Mouse1"
Driver "mouse"
Option "Protocol"    "ExplorerPS/2"
Option "Device"      "/dev/psaux"
Option "Buttons"      "7"
Option "ZAxisMapping" "6 7"


Then you need to do "xmodmap -e "pointer 1236745" I have a script in .kde/Autostart to do this when ever I startx but you can put the line in your .xdefaults as well.


code:
#!/bin/sh

xmodmap -e "pointer = 1 2 3 6 7 4 5"


Once you have verified that your wheel works you can test to see if the extra buttons are seen by X with "xev" (place the pointer in the square and click the buttons to see the events).
Next you need to download and install imwheel (1.0.0pre1) and create .imwheelrc in your home directory with the following,


code:
".*"
None, Up, Alt_L|Left
None, Down, Alt_L|Right


Next start imwheel with imwheel -k -b "67" I use another script in /kde/Autostart for this as well,


code:
#!/bin/sh
imwheel -k -b "67"


So far it's working well in konqueror, mozilla 1.0rc2 and netscape 7 pre1.


--
Louis Sabet - IT Manager
http://www.mobiles.co.uk
http://www.gadgets.co.uk


------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01 _____________________________________________________________________ Ltsp-discuss mailing list. To un-subscribe, or change prefs, goto: https://lists.sourceforge.net/lists/listinfo/ltsp-discuss For additional LTSP help, try #ltsp channel on irc.freenode.net

Reply via email to