AppImage runtime scripts rewrite (now functional on Steam Deck!)

This commit is contained in:
spectranator
2025-04-06 21:32:47 +02:00
parent e52e4ca429
commit 2384d30c2a
13 changed files with 19 additions and 73 deletions

11
AppImageBuilder/assets/AppRun Executable file
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