Simple system tray icon app to show battery level of various razer devices. Should work on Linux, Windows and macOS (latter not tested). Mostly adapted from OpenRazer and OpenRGB.
- add device with
name,pid,interface,usage_page,usageto devices.py - add
transaction_idto switch statement in constructor ofDeviceControllerin device_controller.py
On Linux you also have to add a udev rule to get access to usb devices (see here).
Building with PyInstaller
For Linux:
pyinstaller --onefile --noconsole --add-data "images/*:images" src/app.pywFor Windows:
pyinstaller --onefile --noconsole --add-data "images/*;images" src/app.pywYou can also use wine to build an .exe under Linux.
