Griffin Powermate on Linux
For a while I've used a Griffin PowerMate USB knob as a scroll wheel. It works really well, and is much faster for scrolling long pages, as well as easier on my fingers than the traditional mouse wheel.

Every time I set it up on a new computer, however, I forget how to do it, so here are my definitive instructions:
- Create /etc/udev/rules.d/powermate.rules with the following content:
SUBSYSTEM=="input", ATTRS{idVendor}=="077d", ATTRS{idProduct}=="0410", SYMLINK+="powermate", MODE="660", GROUP="video" - Make sure you're a member of the video group. Alternatively, create a new system group, such as input, and add your user to that group. Change GROUP="video" to suit.
- Restart udev
sudo restart udev
- Install evrouter from http://www.bedroomlan.org/projects/evrouter (Debian/Ubuntu i386 and AMD64 packages available).
- Create /etc/evrouterrc (or $HOME/.evrouterrc) with:
Window ""
"Griffin PowerMate" "" any key/256 "XButton/2"
"Griffin PowerMate" "" any rel/7/1 "XButton/5"
"Griffin PowerMate" "" any rel/7/-1 "XButton/4" - Create /usr/local/bin/powermate with:
#!/bin/sh
evrouter -c /etc/evrouterrc /dev/powermate - Setup your session to auto-run powermate on login (or just be lazy like me and run it when you need it).
Add new comment