mirror of https://github.com/stenzek/duckstation
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
523 B
Bash
22 lines
523 B
Bash
#! /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 "$@"
|
|
|