mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-02-16 19:35:39 +00:00
TOOLS: added missing emulators
This commit is contained in:
parent
eebff894cb
commit
b7a45fe419
14
tools/configure-emulators.sh
Normal file → Executable file
14
tools/configure-emulators.sh
Normal file → Executable file
|
@ -7,6 +7,8 @@ then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
emulator="$(zenity --list \
|
emulator="$(zenity --list \
|
||||||
|
--width=600 \
|
||||||
|
--height=350 \
|
||||||
--title "RetroDECK" \
|
--title "RetroDECK" \
|
||||||
--window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
|
--window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
|
||||||
--text="Which emulator do you want to configure?" \
|
--text="Which emulator do you want to configure?" \
|
||||||
|
@ -15,8 +17,10 @@ emulator="$(zenity --list \
|
||||||
"RetroArch" \
|
"RetroArch" \
|
||||||
"Citra" \
|
"Citra" \
|
||||||
"Dolphin" \
|
"Dolphin" \
|
||||||
|
"Duckstation" \
|
||||||
"MelonDS" \
|
"MelonDS" \
|
||||||
"PCSX2" \
|
"PCSX2-QT" \
|
||||||
|
"PCSX2 (Legacy)" \
|
||||||
"PPSSPP" \
|
"PPSSPP" \
|
||||||
"RPCS3" \
|
"RPCS3" \
|
||||||
"XEMU" \
|
"XEMU" \
|
||||||
|
@ -31,12 +35,18 @@ then
|
||||||
elif [ $emulator == "Dolphin" ]
|
elif [ $emulator == "Dolphin" ]
|
||||||
then
|
then
|
||||||
dolphin-emu
|
dolphin-emu
|
||||||
|
elif [ $emulator == "Duckstation" ]
|
||||||
|
then
|
||||||
|
duckstation-qt
|
||||||
elif [ $emulator == "MelonDS" ]
|
elif [ $emulator == "MelonDS" ]
|
||||||
then
|
then
|
||||||
melonDS
|
melonDS
|
||||||
elif [ $emulator == "PCSX2" ]
|
elif [ $emulator == "PCSX2 (Legacy)" ]
|
||||||
then
|
then
|
||||||
pcsx2
|
pcsx2
|
||||||
|
elif [ $emulator == "pcsx2-qt" ]
|
||||||
|
then
|
||||||
|
pcsx2-qt
|
||||||
elif [ $emulator == "PPSSPP" ]
|
elif [ $emulator == "PPSSPP" ]
|
||||||
then
|
then
|
||||||
PPSSPPSDL
|
PPSSPPSDL
|
||||||
|
|
Loading…
Reference in a new issue