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.

18 lines
625B

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