2022-06-20 20:13:24 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
zenity \
|
|
|
|
--icon-name=net.retrodeck.retrodeck \
|
|
|
|
--question \
|
|
|
|
--no-wrap \
|
|
|
|
--window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
|
|
|
|
--title "RetroDECK" \
|
|
|
|
--ok-label "Yes" \
|
|
|
|
--cancel-label "No" \
|
|
|
|
--text="This tool is will clean the MixImages in order to beautify the theme.\nDo you want to delete them?"
|
|
|
|
|
|
|
|
if [ $? == 0 ] #yes - Internal
|
|
|
|
then
|
|
|
|
find ~/retrodeck/.downloaded_media -name miximages -type d -print0|xargs -0 rm -rfv --
|
2022-06-20 20:17:44 +00:00
|
|
|
fi
|
2022-06-22 11:16:36 +00:00
|
|
|
|
|
|
|
zenity \
|
|
|
|
--icon-name=net.retrodeck.retrodeck \
|
|
|
|
--info \
|
|
|
|
--no-wrap \
|
|
|
|
--window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
|
|
|
|
--title "RetroDECK" \
|
|
|
|
--text="Miximages successfully cleaned, please restart RetroDECK to reload the games list."
|