[PR] #361 from getchoo-contrib: Run neowofetch directly on unix

fix: run `neowofetch` directly on unix
This commit is contained in:
2024-10-25 15:05:28 -07:00
committed by GitHub
+1 -2
View File
@@ -506,8 +506,7 @@ where
#[cfg(not(windows))]
{
let mut command = Command::new("bash");
command.arg(neofetch_path);
let mut command = Command::new(neofetch_path);
command.args(args);
Ok(command)
}