Assists music production by grouping standalone programs into sessions. Community version of "Non Session Manager".
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.

10 lines
241B

  1. #!/bin/bash
  2. if [[ -z "$1" ]]; then
  3. echo "Give NSM OSC Port as only parameter. Afterwards you can run the executable pythons in this dir, directly, without ./"
  4. exit 1
  5. fi
  6. export NSM_URL=osc.udp://0.0.0.0:$1/
  7. export PATH=$(pwd):$PATH