mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 14:05:39 +00:00
7 lines
347 B
Bash
7 lines
347 B
Bash
#!/bin/bash
|
|
|
|
zenity --title "RetroDECK" --question --no-wrap --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" --text="Doing some changes in the RetroArch configuration may create serious issues,\nplease continue only if you know what you're doing.\n\nDo you want to continue?"
|
|
if [ $? == 0 ]
|
|
then
|
|
retroarch
|
|
fi |