mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 14:24:54 +00:00
9 lines
274 B
Text
9 lines
274 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# https://github.com/flathub/com.discordapp.Discord/wiki/Rich-Precense-(discord-rpc)#flatpak-applications
|
||
|
for i in {0..9}; do
|
||
|
test -S $XDG_RUNTIME_DIR/discord-ipc-$i || ln -sf {app/com.discordapp.Discord,$XDG_RUNTIME_DIR}/discord-ipc-$i;
|
||
|
done
|
||
|
|
||
|
dolphin-emu "$@"
|