Pass --no-terminal to mpv (#10)

This commit is contained in:
Ryze 2024-02-14 18:44:34 +03:00
parent 738015c947
commit a971c7c35b

View file

@ -83,6 +83,7 @@ impl Command {
command.stdout(process::Stdio::null());
command.stderr(process::Stdio::null());
command.arg("--no-terminal");
command.args(args);
command.arg("--");
command.arg(url);