added tokio shared states instead of monolithic state
Release / Build and Release (push) Has been cancelled

This commit is contained in:
2026-04-02 18:11:21 +02:00
parent bb3f6e565d
commit bdbd6a8a40
18 changed files with 479 additions and 352 deletions
+2 -2
View File
@@ -2,7 +2,7 @@ use crate::config::Config;
use crate::error::Result;
use crate::modules::WaybarModule;
use crate::output::WaybarOutput;
use crate::state::SharedState;
use crate::state::AppReceivers;
use crate::utils::{TokenValue, format_template};
use std::fs;
@@ -12,7 +12,7 @@ impl WaybarModule for PowerModule {
async fn run(
&self,
config: &Config,
_state: &SharedState,
_state: &AppReceivers,
_args: &[&str],
) -> Result<WaybarOutput> {
let critical_threshold = 15;