mirror of
https://notabug.org/litucks/torzu.git
synced 2025-04-24 09:05:13 +00:00
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
|