Create update.sh

This commit is contained in:
qurious-pixel 2020-12-29 10:48:46 -08:00 committed by GitHub
parent 0cc93af60c
commit 2296e24f0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

13
.github/workflows/update.sh vendored Normal file
View File

@ -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