Simple tray application which shows battery level for HyperX Cloud Flight Wireless Headset.
Make sure you have hidraw installed on your system.
sudo apt install libhidapi-hidraw0
sudo pacman -S hidapi
Create new file in /etc/udev/rules.d/99-hyperx-cloud-flight.rules
and place the following content:
KERNEL=="hidraw*", ATTRS{idVendor}=="0951", ATTRS{idProduct}=="16c4", MODE="0666"
KERNEL=="hidraw*", ATTRS{idVendor}=="0951", ATTRS{idProduct}=="1723", MODE="0666"
Once created replug the wireless dongle.
Download the latest binary from the releases and run it.
foo@bar:~$ curl -LO https://github.com/kondinskis/hyperx-cloud-flight/releases/download/0.1.5/cloud-flight_amd64
foo@bar:~$ chmod +x cloud-flight_amd64
foo@bar:~$ ./cloud-flight_amd64
version="$(awk 'NR==1 {print $2}' debian/changelog | tr -d '()')"
docker build .
id="$(docker create "$(docker image list | awk 'NR==2 {print $3}')")"
docker cp "${id}:/hyperx-cloud-flight_${version}_$(dpkg --print-architecture).deb" .
docker rm -v "$id"
If the build is successful, you will find your binary package in the current directory.
Feel free to report any issues you may have while using this application.
This project is licensed under the MIT License - see the LICENSE.md file for details