feat: add media controls and fixed icon resolution
Code Quality / quality-checks (push) Has been cancelled
Security Scan / security-audit (push) Has been cancelled

- Implement Wayland pointer handling for interactive media buttons.
- Add pure-Rust SVG loading via resvg.
- Refactor status indicators for consistent icon and layout handling.
This commit is contained in:
2026-04-10 17:32:52 +02:00
parent 49438ecd62
commit 61daf52906
5 changed files with 684 additions and 94 deletions
+10 -7
View File
@@ -30,13 +30,16 @@ num-traits = { version = "0.2" }
rand = { version = "0.8" }
reqwest = { version = "0.11", default-features = false, features = ["blocking", "rustls-tls"], optional = true }
image = { version = "0.25", default-features = false, features = ["png", "jpeg"] }
fastblur = "0.1"
pam-client = "0.5"
thiserror = "1.0"
bytemuck = "1.14"
calloop = "0.13"
xkbcommon = "0.7"
calloop-wayland-source = "0.3"
fastblur = "0.1"
pam-client = "0.5"
thiserror = "1.0"
bytemuck = "1.14"
calloop = "0.13"
xkbcommon = "0.7"
calloop-wayland-source = "0.3"
resvg = { version = "0.42", default-features = false }
usvg = { version = "0.42", default-features = false }
tiny-skia = "0.11"
[features]
default = ["networking"]