2013-05-26 10:54:42 +02:00
|
|
|
sensei-raw-ctl
|
|
|
|
|
|
|
|
This program makes it possible to change the configuration of your SteelSeries
|
|
|
|
Sensei Raw mouse from within Linux, *BSD or any other POSIX-compatible system
|
|
|
|
supported by libusb.
|
|
|
|
|
2013-06-09 00:29:57 +02:00
|
|
|
Run `sensei-raw-ctl --help' or `man sensei-raw-ctl' for usage information.
|
|
|
|
|
|
|
|
If you don't fancy command line tools, there's also a basic GTK+ frontend
|
|
|
|
available. On Ubuntu and its derivates, you should be able to find it in your
|
|
|
|
System Settings.
|
|
|
|
|
2013-06-22 00:38:02 +02:00
|
|
|
Supported devices
|
|
|
|
=================
|
|
|
|
- SteelSeries Sensei Raw
|
|
|
|
- SteelSeries Call of Duty: Black Ops II
|
2014-08-07 14:57:01 +02:00
|
|
|
- SteelSeries Guild Wars 2
|
2013-06-22 00:38:02 +02:00
|
|
|
|
2013-05-26 10:54:42 +02:00
|
|
|
Installation
|
|
|
|
============
|
2013-06-09 00:29:57 +02:00
|
|
|
Build dependencies: cmake >= 2.8.5, help2man, libusb >= 1.0,
|
|
|
|
gtk+ >= 3.0 (optional)
|
|
|
|
|
|
|
|
$ git clone git://github.com/pjanouch/sensei-raw-ctl.git
|
|
|
|
$ cd sensei-raw-ctl
|
2013-05-26 10:54:42 +02:00
|
|
|
$ mkdir build
|
|
|
|
$ cd build
|
2013-06-09 00:15:04 +02:00
|
|
|
$ cmake .. -DCMAKE_INSTALL_PREFIX=/usr
|
2013-05-26 10:54:42 +02:00
|
|
|
# make install
|
|
|
|
|
2013-06-09 00:15:04 +02:00
|
|
|
Note that there's no "make uninstall" and the GUI needs to be installed in the
|
2014-02-08 01:51:01 +01:00
|
|
|
right location in order to work correctly.
|
2013-06-09 00:15:04 +02:00
|
|
|
|
|
|
|
If you don't want the GUI frontend, append -DBUILD_GUI=NO to the cmake command.
|
2013-06-09 00:29:57 +02:00
|
|
|
The GUI also isn't going to be built if you don't have the GTK+ 3 development
|
|
|
|
packages installed, if your distribution has any.
|
2013-06-09 00:15:04 +02:00
|
|
|
|
|
|
|
For Debian-based distros, you can do the following instead of the last step:
|
2013-06-19 18:56:05 +02:00
|
|
|
$ fakeroot cpack -G DEB
|
2013-06-09 00:15:04 +02:00
|
|
|
# dpkg -i sensei-raw-ctl-*.deb
|
2013-06-27 22:12:02 +02:00
|
|
|
|
|
|
|
Leave out the fakeroot for CMake >= 2.8.9, it's been fixed since.
|