AppImage real?

Signed-off-by: swurl <swurl@swurl.xyz>
This commit is contained in:
swurl
2025-04-14 20:45:18 -04:00
parent 807397680a
commit 053d68deef
13 changed files with 402 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
#! /bin/bash
cd "$APPDIR"
if [ -d /usr/lib/$(uname -m)-linux-gnu/qt5 ] || [ -d /usr/lib/qt ]; then
# System-wide Qt5
exec ./yuzu.sh "$@"
else
# Bundled Qt5
exec ./yuzu-bqt.sh "$@"
fi