Re: [Debian][OM2008][FSO] Found an easy solution for universal right- and middle-click

2008-11-26 Thread arne anka
[2] http://packages.debian.org/lenny/mousetweaks short survey of the package reveals heavy dependencies on gnome specific libs. ___ Openmoko community mailing list community@lists.openmoko.org http://lists.openmoko.org/mailman/listinfo/community

Re: [Debian][OM2008][FSO] Found an easy solution for universal right- and middle-click

2008-11-25 Thread Margo Koppelmann
input-events was not installed in Debian, so I had to apt-get install input-utils. And then chmod +r /dev/input/event1 (because I want to use it as normal user). And it works now. Thanks. On Sun, Nov 23, 2008 at 11:14 PM, Neil Jerram [EMAIL PROTECTED]wrote: 2008/11/23 Paul Fertser [EMAIL

Re: [Debian][OM2008][FSO] Found an easy solution for universal right- and middle-click

2008-11-25 Thread Nikita V. Youshchenko
Here's an ugly hack to do what you suggest: bash -c 'xmodmap -e pointer = 2 3 1; /root/bin/waitclick.sh; xmodmap -e pointer = 1 2 3' where /root/bin/waitclick.sh: #!/bin/sh input-events 1 21 | ( grep -q -m 1 released kill $$ ) I couldn't find a more elegant way but this

Re: [Debian][OM2008][FSO] Found an easy solution for universal right- and middle-click

2008-11-25 Thread azmodie
I am using a package called mousetweaks[1] wich does provide a onscreen menu for dwell click events. eg right click, drag click etc.. not sure if is in the debian repo for freerunner (reinstalling debian tommorrow) there is a package in debian lenny repo [2] azmodie Due to the speed of light

[Debian][OM2008][FSO] Found an easy solution for universal right- and middle-click

2008-11-23 Thread Paul Fertser
Hello, everybody! I think i found a universal (not only GTK) and easy (without special tslib drivers) solution that should work on any X-server. I just added to my fbpanel two icons to launch xmodmap -e 'pointer = 1 2 3' and xmodmap -e 'pointer = 2 3 1' to switch ts to left-click and to

Re: [Debian][OM2008][FSO] Found an easy solution for universal right- and middle-click

2008-11-23 Thread Neil Jerram
2008/11/23 Paul Fertser [EMAIL PROTECTED]: Hello, everybody! I think i found a universal (not only GTK) and easy (without special tslib drivers) solution that should work on any X-server. I just added to my fbpanel two icons to launch xmodmap -e 'pointer = 1 2 3' and xmodmap -e 'pointer = 2

Re: [Debian][OM2008][FSO] Found an easy solution for universal right- and middle-click

2008-11-23 Thread Timo Juhani Lindfors
Paul Fertser [EMAIL PROTECTED] writes: I just added to my fbpanel two icons to launch xmodmap -e 'pointer = 1 2 3' and xmodmap -e 'pointer = 2 3 1' to switch ts to left-click and to middle-click respectively. Right-click can be added as well. Does this work for you with xserver-xglamo? It

Re: [Debian][OM2008][FSO] Found an easy solution for universal right- and middle-click

2008-11-23 Thread Michele Renda
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Timo Juhani Lindfors ha scritto: Does this work for you with xserver-xglamo? It doesn't here. In xserver-xglamo i saw no way to make a right click! Michele Renda -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG

Re: [Debian][OM2008][FSO] Found an easy solution for universal right- and middle-click

2008-11-23 Thread Paul Fertser
Hi, (i posted the reply off-list by occasion, sorry) Neil Jerram [EMAIL PROTECTED] writes: I just added to my fbpanel two icons to launch xmodmap -e 'pointer = 1 2 3' and xmodmap -e 'pointer = 2 3 1' to switch ts to left-click and to middle-click respectively. Right-click can be added as

Re: [Debian][OM2008][FSO] Found an easy solution for universal right- and middle-click

2008-11-23 Thread Paul Fertser
Hi, Timo Juhani Lindfors [EMAIL PROTECTED] writes: I just added to my fbpanel two icons to launch xmodmap -e 'pointer = 1 2 3' and xmodmap -e 'pointer = 2 3 1' to switch ts to left-click and to middle-click respectively. Right-click can be added as well. Does this work for you with

Re: [Debian][OM2008][FSO] Found an easy solution for universal right- and middle-click

2008-11-23 Thread Neil Jerram
2008/11/23 Paul Fertser [EMAIL PROTECTED]: Here's an ugly hack to do what you suggest: bash -c 'xmodmap -e pointer = 2 3 1; /root/bin/waitclick.sh; xmodmap -e pointer = 1 2 3' where /root/bin/waitclick.sh: #!/bin/sh input-events 1 21 | ( grep -q -m 1 released kill $$ ) I couldn't find a