But is it posible to just use the up and down on teh jog wheel and just have it play the next track, without having to press the OK button, because scrolling through the songs with the screen off seems not only useless but pointless, i just want it to go straight on and play the next track
[div align=\"right\"][{POST_SNAPBACK}][/a][/div]
I'm resurrecting this old post because I've found a way of controlling XMMS with the jog wheel and neighbouring buttons, without the need to have XMMS focused.
Firstly I edited /etc/X11/corgi.xmodmap and modified the following lines:
keycode 131 = XF86AudioPause
keycode 132 = XF86AudioNext
keycode 133 = XF86AudioRaiseVolume
keycode 134 = XF86AudioLowerVolume
- these are the keycodes for OK, cancel, jog right and jog left on my 860 - you could check this with xev.
But I found that the jog wheel was still producing events for up and down, so I edited /usr/bin/inputconfig.py, and changed
if (self.scrollwheeldir == "updown"):
output += "keycode 133 = Up\n"
output += "keycode 134 = Down\n\n"
else:
...
to
if (self.scrollwheeldir == "updown"):
output += "keycode 133 = Up\n"
output += "keycode 134 = Down\n\n"
else:
output += "keycode 133 = XF86AudioRaiseVolume\n"
output += "keycode 134 = XF86AudioLowerVolume\n\n"
and then ran the script and changed my preferences to jog wheel left/right.
Next, I compiled [a href=\"http://www.devin.com/xmms-xf86audio/]xmms-xf86audio[/url], see attached ipk, and installed it on my system. This allows you to bind the XF86Audio events to XMMS controls.
Cheers,
Dan