mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-01-22 17:33:19 +01:00
- Spawn tasks on individual threads - Don't force a default of fan-curve on reload - Add missing profile commands - Begin obsoleting the graphics switch command in favour of supergfxctl - Slim down the notification daemon to pure ASUS notifications Bad behaviour in fan-curve new function that was forcing a re-init to default on reload. Remove this and only save config again after loading the config file and writing a curve (hidden side effect of write is that a zeroed array is defaulted to read-from-system - this needs to be changed too). Closes #140, #139
22 lines
524 B
TOML
22 lines
524 B
TOML
[package]
|
|
name = "asus-notify"
|
|
version = "3.0.2"
|
|
authors = ["Luke D Jones <luke@ljones.dev>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
zbus = "^1.9"
|
|
# serialisation
|
|
serde_json = "^1.0"
|
|
rog_dbus = { path = "../rog-dbus" }
|
|
rog_aura = { path = "../rog-aura" }
|
|
rog_supported = { path = "../rog-supported" }
|
|
rog_profiles = { path = "../rog-profiles" }
|
|
|
|
[dependencies.notify-rust]
|
|
version = "^4.3"
|
|
default-features = false
|
|
features = ["z"]
|