battle.net window fix

This commit is contained in:
Roy 2023-11-04 19:48:38 -07:00 committed by GitHub
parent 074310bee7
commit 3feb2db23e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1783,6 +1783,15 @@ if [[ $options == *"Battle.net"* ]]; then
# Run the BATTLE file using Proton with the /passive option
echo "Running BATTLE file using Proton with the /passive option"
"$STEAM_RUNTIME" "$proton_dir/proton" run "$battle_file" Battle.net-Setup.exe --lang=enUS --installpath="C:\Program Files (x86)\Battle.net"
while true; do
if pgrep -f "Battle.net.exe" > /dev/null; then
pkill -f "Battle.net.exe"
break
fi
sleep 1
done
fi
wait