RetroDECK/tools/start-retroarch.sh
2022-04-25 11:45:26 +09:00

7 lines
251 B
Bash

#!/bin/bash
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?"
if [ $? == 0 ]
then
retroarch
fi