RetroDECK/tools/start-yuzu.sh

7 lines
247 B
Bash
Raw Normal View History

2022-04-22 05:26:19 +00:00
#!/bin/bash
2022-04-29 12:17:30 +00:00
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?"
2022-04-25 02:53:40 +00:00
if [ $? == 0 ]
then
yuzu
fi