Collection of tools useful for audio production
You can not 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
680B

  1. #!/bin/sh
  2. # Cadence Session Startup Injection
  3. # Set plugin paths and start JACK (or not) according to user settings
  4. INSTALL_PREFIX="X-PREFIX-X"
  5. if [ -f $INSTALL_PREFIX/bin/cadence-session-start ]; then
  6. export CADENCE_AUTO_STARTED="true"
  7. export LADSPA_PATH="`$INSTALL_PREFIX/bin/cadence-session-start --printLADSPA_PATH`"
  8. export DSSI_PATH="`$INSTALL_PREFIX/bin/cadence-session-start --printDSSI_PATH`"
  9. export LV2_PATH="`$INSTALL_PREFIX/bin/cadence-session-start --printLV2_PATH`"
  10. export VST_PATH="`$INSTALL_PREFIX/bin/cadence-session-start --printVST_PATH`"
  11. STARTUP="$INSTALL_PREFIX/bin/cadence-session-start --system-start-by-x11-startup $STARTUP"
  12. fi
  13. unset INSTALL_PREFIX