Skip to content

Commit 44d150b

Browse files
Revert "allow the winetricks gui to display"
This reverts commit f89dd31. GUI still shows even with -q and Heroic needs this
1 parent 13aed4b commit 44d150b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

umu/umu_run.py

+6
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,12 @@ def build_command(
365365
)
366366
raise FileNotFoundError(err)
367367

368+
# Configure winetricks to not be prompted for any windows
369+
if env.get("EXE", "").endswith("winetricks") and opts:
370+
# The position of arguments matter for winetricks
371+
# Usage: ./winetricks [options] [command|verb|path-to-verb] ...
372+
opts = ["-q", *opts]
373+
368374
return (
369375
entry_point,
370376
"--verb",

0 commit comments

Comments
 (0)