Files
openshot-qt/installer/launch-linux.sh
2025-05-14 17:46:52 -05:00

17 lines
441 B
Bash
Executable File

#!/bin/bash
# Add the current folder the library path
HERE=$(dirname "$(realpath "$0")")
export LD_LIBRARY_PATH="${HERE}"
# Set some environment variables
export QT_PLUGIN_PATH="${HERE}"
# For Debian-based systems with newer openssl, see:
# https://github.com/OpenShot/openshot-qt/issues/3242
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=918727
export OPENSSL_CONF="/dev/null"
# Launch application
exec "${HERE}"/openshot-qt "$@"