1#! /usr/bin/env bash 2 3# autogenerated by linuxdeploy 4 5# make sure errors in sourced scripts will cause this script to stop 6set -e 7 8this_dir="$(readlink -f "$(dirname "$0")")" 9 10# generated by linuxdeploy-plugin-qt 11 12# try to make Qt apps more "native looking" on Gtk-based desktops, if possible 13# see https://github.com/AppImage/AppImageKit/issues/977#issue-462374883 14case "${XDG_CURRENT_DESKTOP}" in 15 *GNOME*|*gnome*|*XFCE*) 16 export QT_QPA_PLATFORMTHEME=gtk3 17 ;; 18esac 19 20exec "$this_dir"/AppRun.wrapped "$@" 21 22 23