diff --git a/src/system_values.rs b/src/system_values.rs index 899fc2d..ff69fb6 100644 --- a/src/system_values.rs +++ b/src/system_values.rs @@ -14,8 +14,7 @@ pub fn get_temperature() -> f32 { temperature = temperature_string.parse::().unwrap(); temperature /= 1000.0; } else { - let temperature_command = Command::new("sudo") - .arg("/opt/vc/bin/vcgencmd") + let temperature_command = Command::new("/usr/bin/vcgencmd") .arg("measure_temp") .output() .unwrap_or_else(|e| panic!("failed to execute process: {}", e));