<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Logitech MX Revolution in Linux</title>
	<atom:link href="http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/</link>
	<description>Andrew Hill's Blog.  Politics, technology, all the usual stuff</description>
	<lastBuildDate>Thu, 02 Feb 2012 06:20:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Jesse</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-23199</link>
		<dc:creator>Jesse</dc:creator>
		<pubDate>Sat, 24 Oct 2009 11:58:37 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-23199</guid>
		<description>I agree to rem, middle-click to paste will be helpful.</description>
		<content:encoded><![CDATA[<p>I agree to rem, middle-click to paste will be helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rem</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-19274</link>
		<dc:creator>rem</dc:creator>
		<pubDate>Sat, 14 Feb 2009 10:39:47 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-19274</guid>
		<description>Thanks for the info but geez what a pain to get middle-click working. 

I rarely use control-c, control-v, rather I highlight text then middle click to paste, which I really miss with the MX Revolution.

Most of these howto&#039;s seem to change the behavior of the MX Revolution scroll wheel so it accepts pressing it as a middle-click, but if the scroll wheel still mechanically toggles back and forth between free floating and &quot;normal&quot; scrolling with the ticking noise, it does not seem ideal.

I was thinking it would be better to make the small button right behind the scroll wheel the middle-click button. It seems to do nothing by default. Has anyone tried?</description>
		<content:encoded><![CDATA[<p>Thanks for the info but geez what a pain to get middle-click working. </p>
<p>I rarely use control-c, control-v, rather I highlight text then middle click to paste, which I really miss with the MX Revolution.</p>
<p>Most of these howto&#8217;s seem to change the behavior of the MX Revolution scroll wheel so it accepts pressing it as a middle-click, but if the scroll wheel still mechanically toggles back and forth between free floating and &#8220;normal&#8221; scrolling with the ticking noise, it does not seem ideal.</p>
<p>I was thinking it would be better to make the small button right behind the scroll wheel the middle-click button. It seems to do nothing by default. Has anyone tried?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Preet</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-16802</link>
		<dc:creator>Preet</dc:creator>
		<pubDate>Wed, 28 Mar 2007 20:52:53 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-16802</guid>
		<description>Anyone have any ideas on using a VX revolution and not an MX revolution.  The device numbers are different and revoco says no device found.

Could I simply change the code to accept a VX revolution as well and get away with it?</description>
		<content:encoded><![CDATA[<p>Anyone have any ideas on using a VX revolution and not an MX revolution.  The device numbers are different and revoco says no device found.</p>
<p>Could I simply change the code to accept a VX revolution as well and get away with it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-15331</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Wed, 21 Mar 2007 14:00:53 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-15331</guid>
		<description>One way to use the contents of the copy buffer as an argument is to use the program &quot;xclip&quot; (http://people.debian.org/~kims/xclip/) with the -o option.  The problem is that the clipboard contents may be multi line, and very long.

To run the command &quot;firefox -search &#039;clipboard contents&#039;&quot; as suggested above by oxymoron, you could use (single line command):

perl -e &#039;$_=`xclip -o`; s/[\r\n\s]+/ /g; s/^(.{250}).*/$1/; exec(&quot;firefox&quot;, &quot;-search&quot;, $_);&#039;

This will convert the clipboard contents to a single line, collapse whitespace to a single space, then truncate to 250 characters, as most search engines can&#039;t deal with too long searches.  Any other browser could be used in place of firefox here, as the variable $_ contains the reformatted clipboard contents.

To attach it to the search button on the mouse, and have it work with any window/session manager, first assign the search button to XF86Search as suggested above:

xmodmap -e &quot;keycode 122 = XF86Search&quot;

then using xbindkeys (http://hocwp.free.fr/xbindkeys) place the two lines:

&quot;perl -e &#039;$_=`xclip -o`; s/[\r\n\s]+/ /g; s/^(.{250}).*/$1/; exec(&quot;firefox&quot;, &quot;-search&quot;, $_);&#039;&quot;
        XF86Search

in your .xbindkeys file.  Note that xbindkeys is great for assigning any action to any mouse button or key press (like volume up/down and mute keys), and is window/session manager independent.</description>
		<content:encoded><![CDATA[<p>One way to use the contents of the copy buffer as an argument is to use the program &#8220;xclip&#8221; (<a href="http://people.debian.org/~kims/xclip/" rel="nofollow">http://people.debian.org/~kims/xclip/</a>) with the -o option.  The problem is that the clipboard contents may be multi line, and very long.</p>
<p>To run the command &#8220;firefox -search &#8216;clipboard contents&#8217;&#8221; as suggested above by oxymoron, you could use (single line command):</p>
<p>perl -e &#8216;$_=`xclip -o`; s/[\r\n\s]+/ /g; s/^(.{250}).*/$1/; exec(&#8220;firefox&#8221;, &#8220;-search&#8221;, $_);&#8217;</p>
<p>This will convert the clipboard contents to a single line, collapse whitespace to a single space, then truncate to 250 characters, as most search engines can&#8217;t deal with too long searches.  Any other browser could be used in place of firefox here, as the variable $_ contains the reformatted clipboard contents.</p>
<p>To attach it to the search button on the mouse, and have it work with any window/session manager, first assign the search button to XF86Search as suggested above:</p>
<p>xmodmap -e &#8220;keycode 122 = XF86Search&#8221;</p>
<p>then using xbindkeys (<a href="http://hocwp.free.fr/xbindkeys" rel="nofollow">http://hocwp.free.fr/xbindkeys</a>) place the two lines:</p>
<p>&#8220;perl -e &#8216;$_=`xclip -o`; s/[\r\n\s]+/ /g; s/^(.{250}).*/$1/; exec(&#8220;firefox&#8221;, &#8220;-search&#8221;, $_);&#8217;&#8221;<br />
        XF86Search</p>
<p>in your .xbindkeys file.  Note that xbindkeys is great for assigning any action to any mouse button or key press (like volume up/down and mute keys), and is window/session manager independent.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Taylor</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-12691</link>
		<dc:creator>Taylor</dc:creator>
		<pubDate>Sat, 03 Mar 2007 20:01:47 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-12691</guid>
		<description>Thanks guys for the thread. It&#039;s the kindness of others that keep us from pulling our last hairs out. Appreciate the posts and hard work. Helped me tremendously.</description>
		<content:encoded><![CDATA[<p>Thanks guys for the thread. It&#8217;s the kindness of others that keep us from pulling our last hairs out. Appreciate the posts and hard work. Helped me tremendously.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-12493</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Fri, 02 Mar 2007 16:35:08 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-12493</guid>
		<description>This article was very very useful, both in its body and its comments. I certainly would&#039;ve spent far more time going over manuals looking for the bit where you needed to use &quot;evdev&quot; as the driver rather than &quot;mouse&quot;.

Thank you. Please make sure this entry remains available for as long as possible! (Whatever happened to the HOWTO format?)</description>
		<content:encoded><![CDATA[<p>This article was very very useful, both in its body and its comments. I certainly would&#8217;ve spent far more time going over manuals looking for the bit where you needed to use &#8220;evdev&#8221; as the driver rather than &#8220;mouse&#8221;.</p>
<p>Thank you. Please make sure this entry remains available for as long as possible! (Whatever happened to the HOWTO format?)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: f00fbug</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-9996</link>
		<dc:creator>f00fbug</dc:creator>
		<pubDate>Sun, 28 Jan 2007 06:57:13 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-9996</guid>
		<description>Doesn&#039;t work even as root, and it is plugged into the main USB port.  However I&#039;m going to update my kernel pretty soon, so maybe that&#039;ll help.</description>
		<content:encoded><![CDATA[<p>Doesn&#8217;t work even as root, and it is plugged into the main USB port.  However I&#8217;m going to update my kernel pretty soon, so maybe that&#8217;ll help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryan Larsen</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-9884</link>
		<dc:creator>Bryan Larsen</dc:creator>
		<pubDate>Fri, 26 Jan 2007 16:11:28 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-9884</guid>
		<description>If it doesn&#039;t work, try plugging it into a different USB port.  I had everything configured correctly, and my Xorg.0.log output had lots of stuff about finding the mouse, detecting the buttons, et cetera, but then it had the lines:  

(II) LogitechVX-usb-0000:00:1d.1-2/input0: On
(II) LogitechVX-usb-0000:00:1d.1-2/input0: Off

and my mouse wasn&#039;t working.  Removing the dongle from my powered USB hub and plugging it into my mainboard made everything work.</description>
		<content:encoded><![CDATA[<p>If it doesn&#8217;t work, try plugging it into a different USB port.  I had everything configured correctly, and my Xorg.0.log output had lots of stuff about finding the mouse, detecting the buttons, et cetera, but then it had the lines:  </p>
<p>(II) LogitechVX-usb-0000:00:1d.1-2/input0: On<br />
(II) LogitechVX-usb-0000:00:1d.1-2/input0: Off</p>
<p>and my mouse wasn&#8217;t working.  Removing the dongle from my powered USB hub and plugging it into my mainboard made everything work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ferny</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-9826</link>
		<dc:creator>Ferny</dc:creator>
		<pubDate>Thu, 25 Jan 2007 11:45:22 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-9826</guid>
		<description>@f00fbug: Tried being root?

BTW I discovered that to identify the mouse in xorg.conf you can just use the &quot;Name&quot; option and plug the thing wherever you want.</description>
		<content:encoded><![CDATA[<p>@f00fbug: Tried being root?</p>
<p>BTW I discovered that to identify the mouse in xorg.conf you can just use the &#8220;Name&#8221; option and plug the thing wherever you want.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: f00fbug</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-9726</link>
		<dc:creator>f00fbug</dc:creator>
		<pubDate>Tue, 23 Jan 2007 19:06:33 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-9726</guid>
		<description>Hmmm.. the revoco tool seems pretty good, but I can&#039;t get the bloody thing to work. :(

f00f@tux ~ $ revoco manual=6
revoco: HIDIOCSUSAGES: Invalid argument</description>
		<content:encoded><![CDATA[<p>Hmmm.. the revoco tool seems pretty good, but I can&#8217;t get the bloody thing to work. <img src='http://andy.hillhome.org/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>f00f@tux ~ $ revoco manual=6<br />
revoco: HIDIOCSUSAGES: Invalid argument</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ferny</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-9535</link>
		<dc:creator>Ferny</dc:creator>
		<pubDate>Sat, 20 Jan 2007 14:12:32 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-9535</guid>
		<description>Nice work guys, saw the mouse yesterday in shop, fell in love... I wanted to check if it was supported, well, seem it is :D
I&#039;m going to buy it right this afternoon. By the way... The klipper trick should be adaptable to a gnome environment too.
There is a &quot;glipper&quot; utility available for gnome altough i never tryed it, should do the trick. Even Better... The famous deskbar applet have a feature to automatically search for the content of the copy buffer when you press a key.
If you don&#039;t like neither of this solutions, I think there /should/ be a way to issue a &quot;search for whatever&quot; command on all the major linux browsers (firefox, konqueror, epiphany, opera). But I have no idea how to put the content of the copy buffer in a command line...
If it is possible, one will actually be able to map different search engine/programs on shortcuts: 

SearchButton + W = generic internet search for $copy_buffer
SearchButton + W + I = wikipedia search for $copy_buffer
SearchButton + F = files search for $copy_buffer
SearchButton + B = Beagle search for $copy_buffer
(Yeah, klipper actually /ask/ the user what to do with the copied content, but in case you don&#039;t use kde...)
Now I have a question: is there a way to map a keyboard key press to a mouse button in X itself? Like, I press the thumb button and it generates &quot;XWhatever&quot; instead of &quot;Button #&quot;.
I&#039;m asking because neither kwin/metacity/compiz/beryl supported mouse buttons for keybinding last time i checked. I know there are external program that do this, but I&#039;d like Xorg itself to do it for me.
Thanks, and excuse my poor english, bye.</description>
		<content:encoded><![CDATA[<p>Nice work guys, saw the mouse yesterday in shop, fell in love&#8230; I wanted to check if it was supported, well, seem it is <img src='http://andy.hillhome.org/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
I&#8217;m going to buy it right this afternoon. By the way&#8230; The klipper trick should be adaptable to a gnome environment too.<br />
There is a &#8220;glipper&#8221; utility available for gnome altough i never tryed it, should do the trick. Even Better&#8230; The famous deskbar applet have a feature to automatically search for the content of the copy buffer when you press a key.<br />
If you don&#8217;t like neither of this solutions, I think there /should/ be a way to issue a &#8220;search for whatever&#8221; command on all the major linux browsers (firefox, konqueror, epiphany, opera). But I have no idea how to put the content of the copy buffer in a command line&#8230;<br />
If it is possible, one will actually be able to map different search engine/programs on shortcuts: </p>
<p>SearchButton + W = generic internet search for $copy_buffer<br />
SearchButton + W + I = wikipedia search for $copy_buffer<br />
SearchButton + F = files search for $copy_buffer<br />
SearchButton + B = Beagle search for $copy_buffer<br />
(Yeah, klipper actually /ask/ the user what to do with the copied content, but in case you don&#8217;t use kde&#8230;)<br />
Now I have a question: is there a way to map a keyboard key press to a mouse button in X itself? Like, I press the thumb button and it generates &#8220;XWhatever&#8221; instead of &#8220;Button #&#8221;.<br />
I&#8217;m asking because neither kwin/metacity/compiz/beryl supported mouse buttons for keybinding last time i checked. I know there are external program that do this, but I&#8217;d like Xorg itself to do it for me.<br />
Thanks, and excuse my poor english, bye.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Rose</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-8970</link>
		<dc:creator>Michael Rose</dc:creator>
		<pubDate>Fri, 12 Jan 2007 16:04:20 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-8970</guid>
		<description>Apparently both option name and device are not required and under fedora core 6 xorg. 7.1 putting the name option causes x not to start correctly.</description>
		<content:encoded><![CDATA[<p>Apparently both option name and device are not required and under fedora core 6 xorg. 7.1 putting the name option causes x not to start correctly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oxymoron</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-8027</link>
		<dc:creator>oxymoron</dc:creator>
		<pubDate>Sat, 30 Dec 2006 13:19:28 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-8027</guid>
		<description>Working Search button
(just like in Windows) with Klipper
(so only useable for those who has KDE)
i&#039;ve just assigned XF86Search keycode to code 122
xmodmap -e &quot;keycode 122 = XF86Search&quot;
and then assigned shortcut to 
Klipper&#039;s Manually invoke action on current clipboard action.
Then created action called Search with regular expression ^. (i know that there should be something better but i don&#039;t know much about regular expresions)
and with the command to that action
ps x &#124;grep -q &#039;[f]irefox&#039; &amp;&amp; firefox -search %s &#124;&#124; firefox -search %s</description>
		<content:encoded><![CDATA[<p>Working Search button<br />
(just like in Windows) with Klipper<br />
(so only useable for those who has KDE)<br />
i&#8217;ve just assigned XF86Search keycode to code 122<br />
xmodmap -e &#8220;keycode 122 = XF86Search&#8221;<br />
and then assigned shortcut to<br />
Klipper&#8217;s Manually invoke action on current clipboard action.<br />
Then created action called Search with regular expression ^. (i know that there should be something better but i don&#8217;t know much about regular expresions)<br />
and with the command to that action<br />
ps x |grep -q &#8216;[f]irefox&#8217; &amp;&amp; firefox -search %s || firefox -search %s</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PirAh</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-7807</link>
		<dc:creator>PirAh</dc:creator>
		<pubDate>Wed, 27 Dec 2006 08:59:05 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-7807</guid>
		<description>Don&#039;t worry, i got it somewhere else. But thanks anyway! Merry xmas!</description>
		<content:encoded><![CDATA[<p>Don&#8217;t worry, i got it somewhere else. But thanks anyway! Merry xmas!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PirAh</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-7029</link>
		<dc:creator>PirAh</dc:creator>
		<pubDate>Wed, 20 Dec 2006 10:20:44 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-7029</guid>
		<description>Hi from Spain!
It seems that Froese&#039;s site is down, or at least i cannot reach it. Can anyone send it to me, or put it somewhere me or anyone else can donwload it, please!</description>
		<content:encoded><![CDATA[<p>Hi from Spain!<br />
It seems that Froese&#8217;s site is down, or at least i cannot reach it. Can anyone send it to me, or put it somewhere me or anyone else can donwload it, please!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wiebel</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-5629</link>
		<dc:creator>Wiebel</dc:creator>
		<pubDate>Wed, 13 Dec 2006 17:20:32 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-5629</guid>
		<description>I have written the following little script:

#!/bin/bash

if $(cat /var/lock/wheel/free)
        then
        echo false &gt; /var/lock/wheel/free
        /usr/local/bin/revoco temp-free
else    echo true &gt; /var/lock/wheel/free
        /usr/local/bin/revoco auto=5,7
fi

which I then hotkeyed to key 122 (Xf86Search) so I can toggle easily between free-wheel and auto mode.
Just in case anyone is interested.

Sadly I am not able to use the implemented query command of revoco, so I had to use that ugly lockfile solution.

Anyway, this pretty much resembles the last missing feature of the win* driver.

Btw, the 0.3 Version of revoco even is able to change the the mode permanently, beyond reboot.</description>
		<content:encoded><![CDATA[<p>I have written the following little script:</p>
<p>#!/bin/bash</p>
<p>if $(cat /var/lock/wheel/free)<br />
        then<br />
        echo false &gt; /var/lock/wheel/free<br />
        /usr/local/bin/revoco temp-free<br />
else    echo true &gt; /var/lock/wheel/free<br />
        /usr/local/bin/revoco auto=5,7<br />
fi</p>
<p>which I then hotkeyed to key 122 (Xf86Search) so I can toggle easily between free-wheel and auto mode.<br />
Just in case anyone is interested.</p>
<p>Sadly I am not able to use the implemented query command of revoco, so I had to use that ugly lockfile solution.</p>
<p>Anyway, this pretty much resembles the last missing feature of the win* driver.</p>
<p>Btw, the 0.3 Version of revoco even is able to change the the mode permanently, beyond reboot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wiebel</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-4781</link>
		<dc:creator>Wiebel</dc:creator>
		<pubDate>Sat, 02 Dec 2006 14:06:00 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-4781</guid>
		<description>Froese, you did it, personal hero status awarded.

Works absolutely perfectly (version 0.2)
you can even set a different threshold for upward and downward automatic, which suits me fine as I tend to have a faster down scroll than an up scroll.
Btw changing anything on the clicking state via &quot;revovo&quot; automatically releases the wheel to be button 2 again. 
It is exactly the thing we&#039;ve all been waiting for.
There are also undocumented features like soft-click/soft-free, which enables one to automate the click behavior according to the window the pointer is over, without a constant switching to and from clicking mode. Soft-* means the change of state occours only if the wheel is used at all.

I bow deeply.</description>
		<content:encoded><![CDATA[<p>Froese, you did it, personal hero status awarded.</p>
<p>Works absolutely perfectly (version 0.2)<br />
you can even set a different threshold for upward and downward automatic, which suits me fine as I tend to have a faster down scroll than an up scroll.<br />
Btw changing anything on the clicking state via &#8220;revovo&#8221; automatically releases the wheel to be button 2 again.<br />
It is exactly the thing we&#8217;ve all been waiting for.<br />
There are also undocumented features like soft-click/soft-free, which enables one to automate the click behavior according to the window the pointer is over, without a constant switching to and from clicking mode. Soft-* means the change of state occours only if the wheel is used at all.</p>
<p>I bow deeply.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Petteri</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-4342</link>
		<dc:creator>Petteri</dc:creator>
		<pubDate>Mon, 20 Nov 2006 22:19:11 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-4342</guid>
		<description>Here is a xorg.conf bit that is not dependent on the bus you have connected your mouse:

Section &quot;InputDevice&quot;
 Identifier  &quot;Mx Rev&quot;
 Driver      &quot;evdev&quot;
 Option      &quot;Protocol&quot;  &quot;Auto&quot;
 Option      &quot;Name&quot;      &quot;Logitech USB Receiver&quot;
 Option      &quot;Phys&quot;      &quot;usb-*/input0
EndSection</description>
		<content:encoded><![CDATA[<p>Here is a xorg.conf bit that is not dependent on the bus you have connected your mouse:</p>
<p>Section &#8220;InputDevice&#8221;<br />
 Identifier  &#8220;Mx Rev&#8221;<br />
 Driver      &#8220;evdev&#8221;<br />
 Option      &#8220;Protocol&#8221;  &#8220;Auto&#8221;<br />
 Option      &#8220;Name&#8221;      &#8220;Logitech USB Receiver&#8221;<br />
 Option      &#8220;Phys&#8221;      &#8220;usb-*/input0<br />
EndSection</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcet</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-4292</link>
		<dc:creator>Marcet</dc:creator>
		<pubDate>Sun, 19 Nov 2006 22:45:09 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-4292</guid>
		<description>The only way I&#039;ve found to get a middle click is to use the thumb wheel click as the middle click using xmodmap (pointer = 1 17 3 4 5 8 9 6 7 10 11 12 13 14 15 16 2 18 19 20).</description>
		<content:encoded><![CDATA[<p>The only way I&#8217;ve found to get a middle click is to use the thumb wheel click as the middle click using xmodmap (pointer = 1 17 3 4 5 8 9 6 7 10 11 12 13 14 15 16 2 18 19 20).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Froese</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-4280</link>
		<dc:creator>Froese</dc:creator>
		<pubDate>Sun, 19 Nov 2006 18:00:08 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-4280</guid>
		<description>Here&#039;s a small tool for Linux to control the wheel behaviour of the MX-Revolution.  It lets you switch between free-spin, click-to-click, manual, and auto mode.  For manual mode you can specify any button to be used for mode switching and for auto mode you can specify a speed at which free-spin mode is entered (speed range is wider than that of Logitech&#039;s setpoint software).  The middle (wheel) button is available to apps in all modes except in manual=3 mode.

http://goron.de/~froese/revoco-0.1.tar.gz

Have fun and spread it, ET.</description>
		<content:encoded><![CDATA[<p>Here&#8217;s a small tool for Linux to control the wheel behaviour of the MX-Revolution.  It lets you switch between free-spin, click-to-click, manual, and auto mode.  For manual mode you can specify any button to be used for mode switching and for auto mode you can specify a speed at which free-spin mode is entered (speed range is wider than that of Logitech&#8217;s setpoint software).  The middle (wheel) button is available to apps in all modes except in manual=3 mode.</p>
<p><a href="http://goron.de/~froese/revoco-0.1.tar.gz" rel="nofollow">http://goron.de/~froese/revoco-0.1.tar.gz</a></p>
<p>Have fun and spread it, ET.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay K</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-3722</link>
		<dc:creator>Jay K</dc:creator>
		<pubDate>Sat, 04 Nov 2006 18:12:16 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-3722</guid>
		<description>For me, the thumb wheel started working when I upgraded to x.org 7.1.  The only thing that still doesn&#039;t work is the middle click.  It just switches from clicky-scroll to smooth scroll, there&#039;s still no way to control that behavior under linux like there is in the windows drivers.</description>
		<content:encoded><![CDATA[<p>For me, the thumb wheel started working when I upgraded to x.org 7.1.  The only thing that still doesn&#8217;t work is the middle click.  It just switches from clicky-scroll to smooth scroll, there&#8217;s still no way to control that behavior under linux like there is in the windows drivers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-3351</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Fri, 13 Oct 2006 19:58:45 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-3351</guid>
		<description>Hi,

I am trying to get one of these working in Fedora Core 5 - most of the buttons worked after some playing with .Xmodmap, just the 2nd wheel to go - for some reason, xev detects no button presses at all when I move the second wheel!</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am trying to get one of these working in Fedora Core 5 &#8211; most of the buttons worked after some playing with .Xmodmap, just the 2nd wheel to go &#8211; for some reason, xev detects no button presses at all when I move the second wheel!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steph</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-3334</link>
		<dc:creator>Steph</dc:creator>
		<pubDate>Thu, 12 Oct 2006 19:48:19 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-3334</guid>
		<description>Seriously, I think the universe does not want me to email you, since every time I do the message gets returned.

Anyway, call or email and let&#039;s set up a day for the families to get together.</description>
		<content:encoded><![CDATA[<p>Seriously, I think the universe does not want me to email you, since every time I do the message gets returned.</p>
<p>Anyway, call or email and let&#8217;s set up a day for the families to get together.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johannes Hoerhan</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-3084</link>
		<dc:creator>Johannes Hoerhan</dc:creator>
		<pubDate>Wed, 04 Oct 2006 17:35:49 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-3084</guid>
		<description>Got this mouse too - all buttons working!
Using: 
gentoo 2006.1
modular xorg 7.1
xf86-input-evdev 1.1.2-r2

xorg.conf:
Section &quot;InputDevice&quot;
    Identifier  &quot;MxEvdev&quot;
    Driver  &quot;evdev&quot;
    Option  &quot;CorePointer&quot;
    Option  &quot;Protocol&quot;  &quot;auto&quot;
    Option  &quot;Device&quot;    &quot;/dev/input/event2&quot;
EndSection 

regards, johoe</description>
		<content:encoded><![CDATA[<p>Got this mouse too &#8211; all buttons working!<br />
Using:<br />
gentoo 2006.1<br />
modular xorg 7.1<br />
xf86-input-evdev 1.1.2-r2</p>
<p>xorg.conf:<br />
Section &#8220;InputDevice&#8221;<br />
    Identifier  &#8220;MxEvdev&#8221;<br />
    Driver  &#8220;evdev&#8221;<br />
    Option  &#8220;CorePointer&#8221;<br />
    Option  &#8220;Protocol&#8221;  &#8220;auto&#8221;<br />
    Option  &#8220;Device&#8221;    &#8220;/dev/input/event2&#8243;<br />
EndSection </p>
<p>regards, johoe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay K</title>
		<link>http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/comment-page-1/#comment-3047</link>
		<dc:creator>Jay K</dc:creator>
		<pubDate>Sun, 01 Oct 2006 12:13:59 +0000</pubDate>
		<guid isPermaLink="false">http://andy.hillhome.org/blog/2006/09/27/logitech-mx-revolution-in-linux/#comment-3047</guid>
		<description>I just got one of these too.  Do you know if it&#039;s possible to change the scroll mode behavior under linux?  I love the mouse, but don&#039;t think I can use it without my beloved middle click.  I would like to be able to switch from clicky scroll to free scroll, but I don&#039;t want middle click to do that.  Any clues?</description>
		<content:encoded><![CDATA[<p>I just got one of these too.  Do you know if it&#8217;s possible to change the scroll mode behavior under linux?  I love the mouse, but don&#8217;t think I can use it without my beloved middle click.  I would like to be able to switch from clicky scroll to free scroll, but I don&#8217;t want middle click to do that.  Any clues?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

