mirror of
https://github.com/dragoonDorise/EmuDeck.git
synced 2025-05-27 18:31:35 +00:00
* Added missing remote play clients to all.sh * This allows these clients to properly install * Fixed install locations for Greenlight and ShadowPC * Fixed error in cloud.conf * Restores https://github.com/dragoonDorise/EmuDeck/pull/941 * This was not working originally because the cloud.conf file is never updated once it's copied to Emulation/roms/cloud * Added a grep command to detect "browercommand" so this cloud.conf can be updated once in order for this PR to work properly * Added ES-DE and Pegasus optional support * Added a prompt so users can select if they would like their services in ES-DE and Pegasus. Copies files to Emulation/roms/desktop * Removed cloud and remoteplay from Pegasus so scraping can be shared properly between ES-DE and Pegasus * Swapped default desktop system for ES-DE to "Keep ES-DE running" * Added back firefox support * Reverts https://github.com/dragoonDorise/EmuDeck/pull/910 * Added Steam ROM Manager parser for bash and desktop files with proper exclusion for the cloud and remoteplay folders Co-authored-by: rawdatafeel <108900299+rawdatafeel@users.noreply.github.com> Co-authored-by: Thomas Crider <11287837+GloriousEggroll@users.noreply.github.com>
70 lines
2.1 KiB
Bash
70 lines
2.1 KiB
Bash
#!/bin/bash
|
|
|
|
# Variables
|
|
Moonlight_emuName="Moonlight"
|
|
Moonlight_emuType="$emuDeckEmuTypeFlatpak"
|
|
Moonlight_emuPath="com.moonlight_stream.Moonlight"
|
|
Moonlight_releaseURL=""
|
|
|
|
# Install
|
|
Moonlight_install() {
|
|
setMSG "Installing $Moonlight_emuName."
|
|
local ID="$Moonlight_emuPath"
|
|
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo --user
|
|
flatpak install flathub "$ID" -y --user
|
|
flatpak override "$ID" --filesystem=host --user
|
|
flatpak override "$ID" --share=network --user
|
|
cp "$EMUDECKGIT/tools/remoteplayclients/Moonlight Game Streaming.sh" "$romsPath/remoteplay"
|
|
chmod +x "$romsPath/remoteplay/Moonlight Game Streaming.sh"
|
|
#Moonlight_addSteamInputProfile
|
|
}
|
|
|
|
# ApplyInitialSettings
|
|
Moonlight_init() {
|
|
setMSG "Initializing $Moonlight_emuName settings."
|
|
configEmuFP "$Moonlight_emuName" "$Moonlight_emuPath" "true"
|
|
#Moonlight_addSteamInputProfile
|
|
}
|
|
|
|
# Update flatpak & launcher script
|
|
Moonlight_update() {
|
|
setMSG "Updating $Moonlight_emuName settings."
|
|
local ID="$Moonlight_emuPath"
|
|
flatpak update $ID -y --user
|
|
flatpak override $ID --filesystem=host --user
|
|
flatpak override $ID --share=network --user
|
|
rm "$romsPath/remoteplay/Moonlight Game Streaming.sh"
|
|
cp "$EMUDECKGIT/tools/remoteplayclients/Moonlight Game Streaming.sh" "$romsPath/remoteplay"
|
|
chmod +x "$romsPath/remoteplay/Moonlight Game Streaming.sh"
|
|
}
|
|
|
|
# Uninstall
|
|
Moonlight_uninstall() {
|
|
setMSG "Uninstalling $Moonlight_emuName."
|
|
uninstallEmuFP "$Moonlight_emuPath"
|
|
rm "$romsPath/remoteplay/Moonlight Game Streaming.sh"
|
|
}
|
|
|
|
# Check if installed
|
|
Moonlight_IsInstalled() {
|
|
if [ "$(flatpak --columns=app list | grep "$Moonlight_emuPath")" == "$Moonlight_emuPath" ]; then
|
|
# Uninstall if previously installed to the "system" level
|
|
flatpak list | grep "$Moonlight_emuPath" | grep "system"
|
|
if [ $? == 0 ]; then
|
|
Moonlight_uninstall
|
|
Moonlight_install
|
|
fi
|
|
echo true
|
|
return 1
|
|
else
|
|
echo false
|
|
return 0
|
|
fi
|
|
}
|
|
|
|
# Import steam profile
|
|
Moonlight_addSteamInputProfile() {
|
|
echo "NYI"
|
|
#rsync -r "$EMUDECKGIT/configs/steam-input/emudeck_moonlight_controller_config.vdf" "$HOME/.steam/steam/controller_base/templates/"
|
|
}
|