aov: add apl2022 click script

This commit is contained in:
2022-11-26 13:43:15 +07:00
parent b48dc9ba6f
commit d753bee5e3
14 changed files with 207 additions and 0 deletions

16
games/lol/linux/discord_rpc.sh Executable file
View File

@ -0,0 +1,16 @@
#!/bin/bash
# Launch winediscordipcbridge.exe automatically.
# debug wine version and prefix"
echo "wine: $WINE"
echo "prefix: $WINEPREFIX"
echo "Waiting for LeagueClientUx.exe to start..."
until _=$(pidof LeagueClientUx.exe)
do
sleep 1
done
echo "Launching bridge..."
$WINE ./winediscordipcbridge.exe
echo "Bridge closed."