diff --git a/src/utils/cpu.rs b/src/utils/cpu.rs index cb94f0d..eb4325e 100644 --- a/src/utils/cpu.rs +++ b/src/utils/cpu.rs @@ -12,7 +12,7 @@ pub async fn get_cpu_temp() -> ThreadsData { let value = buf.trim().parse::().unwrap(); let result = format!( - " {} {}° {}", + " {} {: <3.1}° {}", CONFIG.cpu_temperature.icon, value / 1000.0, CONFIG.seperator diff --git a/src/utils/netspeed.rs b/src/utils/netspeed.rs index 4829f30..4181daa 100644 --- a/src/utils/netspeed.rs +++ b/src/utils/netspeed.rs @@ -18,7 +18,7 @@ pub async fn get_netspeed() -> ThreadsData { let rx = calculate(rx_bps); let data = format!( - "{}{} {}{} {}", + " {}{} {}{} {}", rx, CONFIG.netspeed.recieve_icon, tx, CONFIG.netspeed.transmit_icon, CONFIG.seperator ); ThreadsData::NetSpeed(data) @@ -36,7 +36,7 @@ fn parse_speed_file(pth: &str) -> u64 { } fn calculate(speed: u64) -> String { - let lookup = ["B", "kB", "MB"]; + let lookup = ["b", "kb", "Mb"]; let mut speed = speed as f64; let mut idx = 0; while speed >= 1024.0 && idx < lookup.len() {