From 862e090bc6f228a81260644d05502d6cca2b81ea Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sat, 17 May 2025 06:22:56 +0300 Subject: [PATCH] daemon: fix typo in comment --- src/daemon.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/daemon.rs b/src/daemon.rs index 202dbfb..82349cb 100644 --- a/src/daemon.rs +++ b/src/daemon.rs @@ -414,7 +414,7 @@ pub fn run_daemon(mut config: AppConfig, verbose: bool) -> Result<(), Box Sys if avg_load > 3.0 { return SystemState::HighLoad; } - + // Check idle state only if we don't have high load if history.is_system_idle() { return SystemState::Idle;