You are not logged in.
imwheel allows you to configure multi-button mice to perform keyboard actions in specified applications.
for instance, you can set it up to perform Alt-Left and Alt-Right in Firefox or Nautilus with the Back and Forward buttons on your mouse.
I would like to get this working with BZFlag so i can set up a button for jumping, but it won't work probably bzflag's fault.
Anyway, here's a PKGBUILD for the latest version (1.0pre11):
Edit: there's a newer version just below
Offline
There's been a new version out for a while (1.0.0pre12)
pkgname=imwheel
pkgver=1.0.0pre12
pkgrel=1
pkgdesc="Program to customize the wheel and other extra buttons on modern mice."
url="http://imwheel.sourceforge.net/"
depends=('x-server')
makedepends=()
conflicts=()
replaces=()
backup=()
install=
source=(http://dl.sourceforge.net/sourceforge/imwheel/$pkgname-$pkgver.tar.gz)
md5sums=('21d81db739ae95d96f9b650f7b826a14')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr --disable-gpm
make || return 1
make prefix=$startdir/pkg/usr install
}
Offline