huskies: merge 927

This commit is contained in:
dave
2026-05-12 17:49:44 +00:00
parent b8945654bf
commit 03a99b3cf1
33 changed files with 119 additions and 25 deletions
+1
View File
@@ -101,6 +101,7 @@ fn parse_duration(s: &str) -> Option<u64> {
///
/// Returns a short string like `"load average: 1.23, 0.98, 0.75"` on success,
/// or `"load: unknown"` on failure.
#[allow(clippy::string_slice)] // idx comes from output.find("load average") → always a char boundary
fn get_load_average() -> String {
let output = std::process::Command::new("uptime")
.output()