about summary refs log tree commit diff stats
path: root/pkgs/by-name/ya/yambar-memory/src/main.rs
blob: ea9e6f39d8b4f3fb60db64a23f9e795bff4f3a9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
use std::{thread, time::Duration};

use sysinfo::{System, SystemExt};

fn main() {
    let mut sys = System::new();

    // Number of CPUs:
    loop {
        sys.refresh_memory();

        let memory_percentage: f64 =
            100 as f64 * (sys.used_memory() as f64 / sys.total_memory() as f64);

        println!("memperc|string|{:.0}", memory_percentage);
        if sys.total_swap() > 0 {
            let swap_percentage: f64 =
                100 as f64 * (sys.used_swap() as f64 / sys.total_swap() as f64);
            println!("swapperc|string|{:.0}", swap_percentage);
            println!("swapstate|bool|true");
        } else {
            println!("swapstate|bool|false");
        }
        println!("");

        // Sleeping to give the system time to run for long
        // enough to have useful information.
        thread::sleep(Duration::from_secs(3));
    }
}