mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-20 06:53:11 +00:00
053d68deef
Signed-off-by: swurl <swurl@swurl.xyz>
12 lines
201 B
Bash
Executable File
12 lines
201 B
Bash
Executable File
#! /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
|