22 lines
523 B
Bash
Executable File
22 lines
523 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
# autogenerated by linuxdeploy
|
|
|
|
# make sure errors in sourced scripts will cause this script to stop
|
|
set -e
|
|
|
|
this_dir="$(readlink -f "$(dirname "$0")")"
|
|
|
|
# generated by linuxdeploy-plugin-qt
|
|
|
|
# try to make Qt apps more "native looking" on Gtk-based desktops, if possible
|
|
# see https://github.com/AppImage/AppImageKit/issues/977#issue-462374883
|
|
case "${XDG_CURRENT_DESKTOP}" in
|
|
*GNOME*|*gnome*|*XFCE*)
|
|
export QT_QPA_PLATFORMTHEME=gtk3
|
|
;;
|
|
esac
|
|
|
|
exec "$this_dir"/AppRun.wrapped "$@"
|
|
|