1
0
Fork 0
mirror of https://github.com/pineappleEA/pineapple-src synced 2024-09-22 20:11:33 +02:00
pineapple-src/.github/workflows/update.sh

16 lines
423 B
Bash
Raw Normal View History

2020-12-29 19:48:46 +01:00
#!/bin/bash
2020-12-31 23:18:31 +01:00
export QT_QPA_PLATFORMTHEME=gtk3
2020-12-29 19:48:46 +01:00
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