1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
Razer device configuration tool
===============================
[https://bues.ch/h/razercfg](https://bues.ch/h/razercfg)
This is a configuration utility for Razer devices on Linux systems.
Supported devices
-----------------
Device support table at [https://bues.ch/h/razercfg#device_support](https://bues.ch/h/razercfg#device_support)
Dependencies
------------
* Python 3.x: [https://www.python.org/](https://www.python.org/)
Debian Linux: `apt-get install python3`
* libusb 1.0: [http://libusb.org/](http://libusb.org/)
Debian Linux: `apt-get install libusb-1.0-0-dev`
* PyQt5 (for the graphical qrazercfg tool only): [https://riverbankcomputing.com/software/pyqt/download5/](https://riverbankcomputing.com/software/pyqt/download5/)
Debian Linux: `apt-get install python3-pyqt5`
* cmake 3.5 or later (for building only): [https://cmake.org/](https://cmake.org/)
Debian Linux: `apt-get install cmake`
Note that almost all distributions ship prebuilt packages of the
above dependencies.
If you installed a dependency after you already ran `cmake .` and/or `make`, it
might happen that the dependency is still not found. Just delete the cmake
status files or unpack a clean razercfg tarball to workaround this issue.
Building
--------
First invoke `cmake` to build the makefiles.
Then invoke `make` to build the binaries:
<pre>
cmake .
make
</pre>
(Note the required space and dot after the cmake command)
Installing
----------
First you need to install the tool libraries and binaries. Do this by executing
the following command as root:
<pre>
make install
</pre>
Be aware that `make install` installs the shared library `librazer.so` to `$PREFIX/lib`.
The default `$PREFIX` is `/usr/local/`, but the install prefix can also be changed via `-DCMAKE_INSTALL_PREFIX='<somewhere>'`.
You have to make sure that `librazer.so` in `$PREFIX/lib/` can be found by the dynamic linker `ld.so`.
Your operating system most likely already has support for libraries in `/usr/local/lib`. So on most systems you don't have to do anything.
If this is not the case, or you installed razercfg somewhere else, a new library search path can be added via `/etc/ld.so.conf` or `/etc/ld.so.conf.d/`.
See your operating system manual for further information.
### If you use **systemd**:
The `make install` step installed the razerd.service file. Reboot or run the
following command as root to start the razerd daemon:
<pre>
systemctl start razerd
</pre>
### If you do **not** use systemd:
To automatically start the required system daemon `razerd` at bootup time, you
need to install the init-script. This software package includes a generic
example script, that should work out-of-the-box on many Linux distributions. To
install it, invoke the following commands as root:
<pre>
cp ./razerd.initscript /etc/init.d/razerd
ln -s /etc/init.d/razerd /etc/rc2.d/S99razerd
ln -s /etc/init.d/razerd /etc/rc5.d/S99razerd
ln -s /etc/init.d/razerd /etc/rc0.d/K01razerd
ln -s /etc/init.d/razerd /etc/rc6.d/K01razerd
</pre>
### If you use **udev**:
The `make install` step installed the udev script to
<pre>
/etc/udev/rules.d/80-razer.rules
</pre>
This should work on most distributions.
If udev notification does not work, try to reboot the system.
RazerD Configuration
--------------------
The user may create a razerd configuration file in `/etc/razer.conf` which can be
used to specify various razerd options and initial hardware configuration
settings.
An example config file is included as `razer.conf` in this package.
If no configuration file is available, razerd will work with default settings.
X Window System (X.ORG) Configuration
-------------------------------------
If you don't have an xorg.conf, you don't have to do anything and it should work
out-of-the-box.
X must _not_ be configured to a specific mouse device like `/dev/input/mouse0`. On
configuration events, razerd may have to temporarily unregister the mouse from
the system. This will confuse X, if it's configured to a specific device.
Configure it to the generic `/dev/input/mice` device instead. This will enable X
to pick up the mouse again after a configuration event from razerd.
Example xorg.conf snippet:
<pre>
Section "InputDevice"
Identifier "Mouse"
Driver "mouse"
Option "Device" "/dev/input/mice"
EndSection
</pre>
Alternatively, do not specify a `"Device"` at all. X will autodetect the device
then:
<pre>
Section "InputDevice"
Identifier "Mouse"
Driver "mouse"
EndSection
</pre>
In any case, do _NOT_ use: `Option "Device" "/dev/input/mouseX"`
Using the tools
---------------
To use the tools, the razerd daemon needs to be started as root, first. Without
the background daemon, nothing will work. The daemon is responsible for doing
the lowlevel hardware accesses and for tracking the current state of the device.
While the daemon is running, the user interfaces `razercfg` (commandline) and
`qrazercfg` (graphical user interface) can be used.
Uninstalling
------------
If you installed razercfg with your distribution packaging system, use that to
uninstall razercfg.
If you compiled razercfg from source and installed it with `make install`, you
can use the `uninstall.sh` script from the razercfg archive to uninstall
razercfg from the system. It must be called with the install prefix as its first
argument. That usually is `/usr/local`, unless specified otherwise in cmake. A
call to uninstall.sh might look like this:
<pre>
./uninstall.sh /usr/local
</pre>
Architecture
------------
The architecture layout of the razer tools looks like this:
<pre>
-------------------
| hardware driver 0 |--v
------------------- |
| ----------
------------------- | | lowlevel | -------- ---------
| hardware driver 1 |--x---| librazer |----| razerd |----| pyrazer |
------------------- | ---------- -------- ---------
| | ^ ^ ^
------------------- | --------------------------- | | |
| hardware driver n |--^ | (to be written) librazerd | | | |
------------------- --------------------------- | | |
^ ^ ^ | | |
| | | | | |
--------------- | | | | | |
| Application 0 |---^ | | | | |
--------------- | | | | |
| | | | |
--------------- | | | | |
| Application 1 |-----^ | | | |
--------------- | | | |
| | | |
--------------- | | | |
| Application n |-------^ | | |
--------------- | | |
| | |
---------- | | |
| razercfg |----------------------^ | |
---------- | |
| |
----------- | |
| qrazercfg |-----------------------^ |
----------- |
|
-------------------------- |
| Other Python applications |---------^
---------------------------
</pre>
So in general, your application wants to access the razer devices through
pyrazer or (if it's not a python app) through librazerd.
(Note that librazerd is not written, yet. So currently the only way to access
the devices is through pyrazer).
Applications should never poke with lowlevel librazer directly, because there
will be no instance that keeps track of the device state and permissions and
concurrency.
License
-------
Copyright (c) 2007-2024 Michael Büsch, et al.
See the COPYING file for license information.
|