mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-02-06 00:15:04 +01:00
22 lines
577 B
Rust
22 lines
577 B
Rust
//! This crate is intended for shared types (eg, between daemon and CLI), or
|
|
//! for types that might be useful in third-party crates perhaps for
|
|
//! sending messages over dbus wire
|
|
|
|
pub static DBUS_NAME: &str = "org.asuslinux.Daemon";
|
|
pub static DBUS_PATH: &str = "/org/asuslinux/Daemon";
|
|
pub static DBUS_IFACE: &str = "org.asuslinux.Daemon";
|
|
pub const LED_MSG_LEN: usize = 17;
|
|
|
|
pub mod aura_modes;
|
|
|
|
pub mod profile;
|
|
|
|
/// Enables you to create fancy RGB effects
|
|
pub mod aura_perkey;
|
|
|
|
pub mod gfx_vendors;
|
|
|
|
pub mod error;
|
|
|
|
pub static VERSION: &str = env!("CARGO_PKG_VERSION");
|