Files
Citron/AppImageBuilder/assets/AppRun
2026-02-16 14:55:56 +01:00

12 lines
205 B
Bash

#! /bin/bash
cd "$APPDIR"
if [ -d /usr/lib/$(uname -m)-linux-gnu/qt5 ] || [ -d /usr/lib/qt ]; then
# System-wide Qt5
exec ./citron.sh "$@"
else
# Bundled Qt5
exec ./citron-bqt.sh "$@"
fi