about summary refs log tree commit diff stats
path: root/pkgs/by-name/ya/yambar-cpu/src
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-05-24 14:06:14 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-05-24 14:06:14 +0200
commit636478286139184ebfa1ffd3610ce0ca482e04fa (patch)
tree45e61147588ca73f0973ab410359f3d7c1f0e3d1 /pkgs/by-name/ya/yambar-cpu/src
parentfix(modules/system/home-manager): Import soispha's hm config (diff)
downloadnixos-config-636478286139184ebfa1ffd3610ce0ca482e04fa.tar.gz
nixos-config-636478286139184ebfa1ffd3610ce0ca482e04fa.zip
feat(pkgs): Pull yambar-{cpu,memory} in tree
Diffstat (limited to '')
-rw-r--r--pkgs/by-name/ya/yambar-cpu/src/main.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/by-name/ya/yambar-cpu/src/main.rs b/pkgs/by-name/ya/yambar-cpu/src/main.rs
new file mode 100644
index 00000000..9314b81e
--- /dev/null
+++ b/pkgs/by-name/ya/yambar-cpu/src/main.rs
@@ -0,0 +1,22 @@
+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));
+    }
+}