Rename to hyper_headset
This commit is contained in:
@@ -1,12 +1,10 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "hyper_x_cloud_ii_wireless"
|
name = "hyper_headset"
|
||||||
version = "1.1.0"
|
version = "1.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Lennard Kittner"]
|
authors = ["Lennard Kittner"]
|
||||||
description = "A CLI and tray application for monitoring and managing HyperX headsets."
|
description = "A CLI and tray application for monitoring and managing HyperX headsets."
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = { version = "4.5.32", features = ["derive"] }
|
clap = { version = "4.5.32", features = ["derive"] }
|
||||||
hidapi = "2.3.3"
|
hidapi = "2.3.3"
|
||||||
|
|||||||
12
README.md
12
README.md
@@ -1,4 +1,4 @@
|
|||||||
# HyperXCloudIIWireless
|
# HyperHeadset
|
||||||
A CLI and tray application for monitoring and managing HyperX headsets.
|
A CLI and tray application for monitoring and managing HyperX headsets.
|
||||||
|
|
||||||
<img src=./screenshots/tray_app.png alt="tray_app" width="400">
|
<img src=./screenshots/tray_app.png alt="tray_app" width="400">
|
||||||
@@ -83,8 +83,10 @@ You can also download a compiled version from [releases](https://github.com/Lenn
|
|||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
```
|
```
|
||||||
cli_app --help
|
hyper_headset_cli --help
|
||||||
Usage: cli_app [OPTIONS]
|
A CLI and tray application for monitoring and managing HyperX headsets.
|
||||||
|
|
||||||
|
Usage: hyper_headset_cli [OPTIONS]
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
--automatic_shutdown <automatic_shutdown>
|
--automatic_shutdown <automatic_shutdown>
|
||||||
@@ -103,9 +105,9 @@ Options:
|
|||||||
-V, --version
|
-V, --version
|
||||||
Print version
|
Print version
|
||||||
```
|
```
|
||||||
`cli_app` without any arguments will print all available headset information.
|
`hyper_headset_cli` without any arguments will print all available headset information.
|
||||||
|
|
||||||
`hyper_x_cloud_ii_wireless` without any arguments will start the tray application.
|
`hyper_headset` without any arguments will start the tray application.
|
||||||
Once it's open, hover over the headset icon in the system tray or right-click to view details such as the battery level.
|
Once it's open, hover over the headset icon in the system tray or right-click to view details such as the battery level.
|
||||||
You can also exit via the right-clock menu.
|
You can also exit via the right-clock menu.
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
use clap::{Arg, Command};
|
use clap::{Arg, Command};
|
||||||
use hyper_x_cloud_ii_wireless::devices::{cloud_ii_wireless_dts::CloudIIWirelessDTS, Device};
|
use hyper_headset::devices::{cloud_ii_wireless_dts::CloudIIWirelessDTS, Device};
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let matches = Command::new(env!("CARGO_PKG_NAME"))
|
let matches = Command::new(env!("CARGO_PKG_NAME"))
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
mod status_tray;
|
mod status_tray;
|
||||||
use hyper_x_cloud_ii_wireless::devices::{connect_compatible_device, DeviceError};
|
use hyper_headset::devices::connect_compatible_device;
|
||||||
use status_tray::{StatusTray, TrayHandler};
|
use status_tray::{StatusTray, TrayHandler};
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
use hyper_x_cloud_ii_wireless::devices::DeviceState;
|
use hyper_headset::devices::DeviceState;
|
||||||
use ksni::{menu::StandardItem, Handle, MenuItem, ToolTip, Tray, TrayService};
|
use ksni::{menu::StandardItem, Handle, MenuItem, ToolTip, Tray, TrayService};
|
||||||
|
|
||||||
pub struct TrayHandler {
|
pub struct TrayHandler {
|
||||||
|
|||||||
Reference in New Issue
Block a user