mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-25 15:35:38 +00:00
Added start-dolphin and start-pcsx2 tools
This commit is contained in:
parent
655dbc2f48
commit
e580ea3c53
|
@ -14,6 +14,20 @@
|
|||
<nogamecount>true</nogamecount>
|
||||
<nomultiscrape>true</nomultiscrape>
|
||||
</game>
|
||||
<game>
|
||||
<path>./start-pcsx2.sh</path>
|
||||
<name>Start PCSX2</name>
|
||||
<desc>Start PCSX2 to manually tweak your settings.</desc>
|
||||
<nogamecount>true</nogamecount>
|
||||
<nomultiscrape>true</nomultiscrape>
|
||||
</game>
|
||||
<game>
|
||||
<path>./start-dolphin.sh</path>
|
||||
<name>Start Dolphin</name>
|
||||
<desc>Start Dolphin to manually tweak your settings.</desc>
|
||||
<nogamecount>true</nogamecount>
|
||||
<nomultiscrape>true</nomultiscrape>
|
||||
</game>
|
||||
<game>
|
||||
<path>./start-melonds.sh</path>
|
||||
<name>Start MelonDS</name>
|
||||
|
|
7
tools/start-dolphin.sh
Normal file
7
tools/start-dolphin.sh
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
kdialog --title "RetroDECK" --warningyesno "Doing some changes in the emulator's configuration may create serious issues, please continue only if you know what you're doing.\n\nDo you want to continue?"
|
||||
if [ $? == 0 ]
|
||||
then
|
||||
dolphin-qt
|
||||
fi
|
7
tools/start-pcsx2.sh
Normal file
7
tools/start-pcsx2.sh
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
kdialog --title "RetroDECK" --warningyesno "Doing some changes in the emulator's configuration may create serious issues, please continue only if you know what you're doing.\n\nDo you want to continue?"
|
||||
if [ $? == 0 ]
|
||||
then
|
||||
pcsx2
|
||||
fi
|
Loading…
Reference in a new issue