mirror of
https://github.com/Rosalie241/RMG.git
synced 2026-07-26 00:24:00 +02:00
12 lines
430 B
Bash
Executable File
12 lines
430 B
Bash
Executable File
#!/usr/bin/env sh
|
|
[ -f "$APPIMAGE".stylesheet ] && APPIMAGE_QT_THEME="$APPIMAGE.stylesheet"
|
|
[ -f "$APPIMAGE_QT_THEME" ] && set -- "$@" "-stylesheet" "$APPIMAGE_QT_THEME"
|
|
cur_dir="$(readlink -f "$(dirname "$0")")"
|
|
|
|
exec "$cur_dir/bin/RMG" \
|
|
--lib-path="$cur_dir/shared/lib/RMG" \
|
|
--core-path="$cur_dir/shared/lib/RMG/Core" \
|
|
--plugin-path="$cur_dir/shared/lib/RMG/Plugin" \
|
|
--shared-data-path="$cur_dir/share/RMG" \
|
|
"$@"
|