RetroDECK/tools/start-retroarch.sh

7 lines
251 B
Bash
Raw Normal View History

2022-03-29 02:51:22 +00:00
#!/bin/bash
2022-04-07 13:00:44 +00:00
kdialog --title "RetroDECK" --warningyesno "Doing some changes in the RetroArch configuration may create serious issues, please continue only if you know what you're doing.\n\nDo you want to continue?"
2022-04-25 02:45:26 +00:00
if [ $? == 0 ]
then
retroarch
fi