blob: 2324a72dc6619acc2edd87b36a66ea3bf654fc4b (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
export DESKTOPINTEGRATION=false
# Fix ffmpeg library detection with the AppImage
export LD_PRELOAD=/usr/lib/libdbus-1.so
INSTALL_DIR="/opt/musescore-bin"
exec "$INSTALL_DIR/musescore-bin.AppImage" "$@"
|