Skip to content

Commit

Permalink
Revert "allow the winetricks gui to display"
Browse files Browse the repository at this point in the history
This reverts commit f89dd31.

GUI still shows even with -q and Heroic needs this
  • Loading branch information
GloriousEggroll committed Oct 23, 2024
1 parent 13aed4b commit 44d150b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions umu/umu_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,12 @@ def build_command(
)
raise FileNotFoundError(err)

# Configure winetricks to not be prompted for any windows
if env.get("EXE", "").endswith("winetricks") and opts:
# The position of arguments matter for winetricks
# Usage: ./winetricks [options] [command|verb|path-to-verb] ...
opts = ["-q", *opts]

return (
entry_point,
"--verb",
Expand Down

0 comments on commit 44d150b

Please sign in to comment.