mirror of
https://github.com/dragoonDorise/EmuDeck.git
synced 2025-05-27 18:31:35 +00:00
17 lines
1.1 KiB
Bash
17 lines
1.1 KiB
Bash
#!/bin/bash
|
|
|
|
RemotePlayWhatever_install(){
|
|
mkdir -p "${toolsPath}/remoteplaywhatever"
|
|
installEmuAI "RemotePlayWhatever" "$(getReleaseURLGH "m4dEngi/RemotePlayWhatever" "AppImage")"
|
|
RemotePlayWhatever_init
|
|
}
|
|
|
|
RemotePlayWhatever_init(){
|
|
setMSG "Configuring RemotePlayWhatever"
|
|
cp "$EMUDECKGIT/tools/remoteplaywhatever/remoteplaywhatever.sh" "${toolsPath}/remoteplaywhatever/"
|
|
chmod +x "${toolsPath}/remoteplaywhatever/remoteplaywhatever.sh"
|
|
echo -e "OK!"
|
|
zenity --question --width 450 --title "Close Steam/Steam Input?" --text "Now we will exit steam and launch Steam Rom Manager so you can add RemotePlayWhatever. Desktop controls will temporarily revert to touch/trackpad/L2/R2." && (kill -15 $(pidof steam)) & cp $HOME/.config/EmuDeck/backend/configs/steam-rom-manager/userData/userConfigurationsRPW.json $HOME/.config/steam-rom-manager/userData/userConfigurations.json && ${toolsPath}/srm/Steam-ROM-Manager.AppImage && cp $HOME/.config/EmuDeck/backend/configs/steam-rom-manager/userData/userConfigurations.json $HOME/.config/steam-rom-manager/userData/userConfigurations.json
|
|
|
|
}
|