scripts/games/LoL/linux/discord_rpc.sh

17 lines
331 B
Bash
Raw Normal View History

#!/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."