blob: f8ae59503fbbf66e5cb073f14b4e4185c4d1d1da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
use crate::config::CONFIG;
use std::fs::File;
use std::io::Read;
// getting cpu temperature
pub fn get_cpu_temp() -> Result<String, std::io::Error> {
let mut buf = String::new();
File::open("/sys/class/thermal/thermal_zone0/temp")?.read_to_string(&mut buf)?;
let value = buf.trim().parse::<f32>().unwrap();
let result = format!(
" {} {}° {}",
CONFIG.cpu_temperature.icon,
value / 1000.0,
CONFIG.seperator
);
Ok(result)
}
|