From 2fe7a31b543b830d2b8f6a88ce1cc1e8f832134c Mon Sep 17 00:00:00 2001 From: Mikhail Tergoev Date: Fri, 23 Jan 2026 12:30:50 +0300 Subject: [PATCH] added arg: control --- winehelper | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/winehelper b/winehelper index 4b54ed5..9e0271b 100755 --- a/winehelper +++ b/winehelper @@ -1566,7 +1566,7 @@ wine_regfile () { wine_run () { local wh_add_args win_file_exec win_file_path win_file_name - if [[ $1 =~ (winecfg|regedit|winefile|wineconsole) ]] ; then + if [[ $1 =~ (winecfg|regedit|winefile|wineconsole|control) ]] ; then win_file_exec="$1" win_file_name="$win_file_exec" win_file_path="$DRIVE_C" @@ -2628,6 +2628,7 @@ case "$arg1" in winereg|regedit) prepair_wine ; wine_run "regedit" ;; winefile|explorer) prepair_wine ; wine_run "winefile" ;; wineconsole|cmd) prepair_wine ; wine_run "wineconsole" ;; + control) prepair_wine ; wine_run "control" ;; winetricks) prepair_wine ; "$WH_WINETRICKS" -q "$@" ;; desktop) create_desktop "$@" ; exit 0 ;; install|-i) run_autoinstall "$@" ;;