https://github.com/danieloneill/g733daemon
(Qt)DBUS daemon for Logitech G733 headset
https://github.com/danieloneill/g733daemon
Last synced: over 1 year ago
JSON representation
(Qt)DBUS daemon for Logitech G733 headset
- Host: GitHub
- URL: https://github.com/danieloneill/g733daemon
- Owner: danieloneill
- Created: 2023-01-07T07:38:49.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-22T08:52:14.000Z (over 3 years ago)
- Last Synced: 2025-02-12T10:18:48.883Z (over 1 year ago)
- Language: C++
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# g733daemon
(Qt)DBUS daemon for Logitech G733 headset
Code based on work done by [ashkitten](https://github.com/ashkitten/g933-utils) and [sapd](https://github.com/Sapd/HeadsetControl).
See also [g733systray](https://github.com/danieloneill/g733systray) which handles notifications and control of the headset.
To build:
```
$ mkdir build
$ cd build
$ qmake ..
$ make
```
If running it squeals about permissions, try creating this udev rule at */etc/udev/rules.d/70-g733.rules*:
```
ACTION!="add|change", GOTO="headset_end"
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="0ab5", TAG+="uaccess"
LABEL="headset_end"
```