EmuDeck/tools/remoteplaywhatever/remoteplaywhatever.sh
Riccardo Pittau d8cbef6843
Explicitely call bash instead of /bin/sh (#512)
The /bin/sh file is a link, not an actual binary, and that can point
to /bin/bash as well as other shells, like /bin/dash in recent
ubuntu versions.
To be consistent between linux distributions, and avoid issues like
missing support for bash functions (e.g. source), let's call /bin/bash
instead.
2022-11-28 15:24:50 -05:00

10 lines
522 B
Bash

#!/bin/bash
text="`printf " <b>Multiplayer Instructions</b>\n\n Invite your friend on the next window\n\nPress the STEAM Button and go back to Library, open <b>EmulationStation</b>, launch your game and enjoy!!\n\nAs of now only games launched using EmulationStation work on Multiplayer mode\n\n<b>RemotePlayWhatever is in early beta, so expecto some crashes here and there</b>)"`"
zenity --info \
--title="EmuDeck" \
--width="450" \
--text="${text}" 2>/dev/null
~/Applications/RemotePlayWhatever.AppImage