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.

17 lines
360B

  1. #!/bin/bash
  2. if [ -f /usr/bin/python3 ]; then
  3. PYTHON=/usr/bin/python3
  4. else
  5. PYTHON=python
  6. fi
  7. INSTALL_PREFIX="X-PREFIX-X"
  8. if [ $1 == "--system-start-by-x11-startup" ]; then
  9. $PYTHON $INSTALL_PREFIX/share/cadence/src/cadence_session_start.py --system-start &
  10. exec $2
  11. else
  12. exec $PYTHON $INSTALL_PREFIX/share/cadence/src/cadence_session_start.py "$@"
  13. fi