Files
openshot-qt/installer/launch-linux.sh

17 lines
441 B
Bash
Raw Permalink Normal View History

#!/bin/bash
2025-05-14 17:46:52 -05:00
# Add the current folder the library path
HERE=$(dirname "$(realpath "$0")")
export LD_LIBRARY_PATH="${HERE}"
2025-05-14 17:46:52 -05:00
# Set some environment variables
export QT_PLUGIN_PATH="${HERE}"
2025-05-14 17:46:52 -05:00
# 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
2020-03-20 15:04:28 -04:00
export OPENSSL_CONF="/dev/null"
2025-05-14 17:46:52 -05:00
# Launch application
exec "${HERE}"/openshot-qt "$@"