about summary refs log tree commit diff stats
path: root/pkgs/by-name/ya/yambar-modules/src/cpu.rs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/by-name/ya/yambar-modules/src/cpu.rs')
-rw-r--r--pkgs/by-name/ya/yambar-modules/src/cpu.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/by-name/ya/yambar-modules/src/cpu.rs b/pkgs/by-name/ya/yambar-modules/src/cpu.rs
new file mode 100644
index 00000000..5a6dd084
--- /dev/null
+++ b/pkgs/by-name/ya/yambar-modules/src/cpu.rs
@@ -0,0 +1,21 @@
+use std::{thread, time::Duration};
+
+use sysinfo::{CpuExt, System, SystemExt};
+
+pub fn cpu() {
+    let mut sys = System::new();
+
+    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));
+    }
+}