changed units to F

This commit is contained in:
Nickiel12 2023-08-26 09:58:13 -07:00
parent 97bb44f717
commit 11790783fc

View file

@ -68,6 +68,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
for drive in drives { for drive in drives {
let output = match Command::new(args.hddtemp_executable.clone()) let output = match Command::new(args.hddtemp_executable.clone())
.arg("--unit=F")
.arg(drive.clone()) .arg(drive.clone())
.output() .output()
{ {