From cbd9aec4bf2e488156f5dc101271d572af0cd2ca Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Fri, 29 Nov 2024 18:48:07 +0100 Subject: chore(pkgs/by-name/ya/{cpu,memory}): Merge There is no reason to keep these two programs separate. --- pkgs/by-name/ya/yambar-cpu/src/main.rs | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 pkgs/by-name/ya/yambar-cpu/src/main.rs (limited to 'pkgs/by-name/ya/yambar-cpu/src') diff --git a/pkgs/by-name/ya/yambar-cpu/src/main.rs b/pkgs/by-name/ya/yambar-cpu/src/main.rs deleted file mode 100644 index 9314b81e..00000000 --- a/pkgs/by-name/ya/yambar-cpu/src/main.rs +++ /dev/null @@ -1,22 +0,0 @@ -use std::{thread, time::Duration}; - -use sysinfo::{CpuExt, System, SystemExt}; - -fn main() { - let mut sys = System::new(); - - // Number of CPUs: - loop { - sys.refresh_cpu(); - let cpu_usage: f32 = sys.cpus().iter().map(|cpu| cpu.cpu_usage()).sum(); - println!( - "cpu|range:0-100|{:.0}", - cpu_usage / sys.cpus().iter().count() as f32 - ); - println!(); - - // Sleeping to give the system time to run for long - // enough to have useful information. - thread::sleep(Duration::from_secs(3)); - } -} -- cgit 1.4.1