diff --git a/.github/workflows/update.sh b/.github/workflows/update.sh new file mode 100644 index 000000000..530838d35 --- /dev/null +++ b/.github/workflows/update.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +zenity --question --timeout=10 --title="yuzu updater" --text="New update available. Update now?" --icon-name=yuzu --window-icon=yuzu.svg --height=80 --width=400 +answer=$? + +if [ "$answer" -eq 0 ]; then + $APPDIR/usr/bin/AppImageUpdate $PWD/yuzu-x86_64.AppImage +elif [ "$answer" -eq 1 ]; then + $APPDIR/usr/bin/yuzu +elif [ "$answer" -eq 5 ]; then + $APPDIR/usr/bin/yuzu +fi +exit 0