Skip to content

Commit

Permalink
[PR] #361 from getchoo-contrib: Run neowofetch directly on unix
Browse files Browse the repository at this point in the history
fix: run `neowofetch` directly on unix
  • Loading branch information
hykilpikonna authored Oct 25, 2024
2 parents b5b49ec + 4ea0a4a commit 28b365d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/hyfetch/src/neofetch_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 28b365d

Please sign in to comment.