UEngine 安装器支持安装使用 SuperSU Root 的镜像

This commit is contained in:
gfdgd_xi 2023-01-18 13:46:28 +08:00
parent a5104f8d03
commit ca7ec5e7ad
1 changed files with 4 additions and 0 deletions

View File

@ -448,6 +448,10 @@ def InstallRootUengineImage():
def UengineUbuntuInstall():
threading.Thread(target=os.system, args=[f"'{programPath}/launch.sh' deepin-terminal -e bash '{programPath + '/uengine-installer'}'"]).start()
def UengineUbuntuInstallRoot():
# 加 SuperSU 参数
threading.Thread(target=os.system, args=[f"'{programPath}/launch.sh' deepin-terminal -e bash '{programPath + '/uengine-installer'} SuperSU'"]).start()
def UbuntuInstallUengine():
threading.Thread(target=os.system, args=[f"'{programPath}/launch.sh' deepin-terminal -e bash '{programPath + '/uengine-installer'}'"]).start()