mirror of
https://gitlab.dit.htwk-leipzig.de/computermusik-ws23/data-composition.git
synced 2025-05-19 00:01:47 +02:00
8 lines
261 B
Bash
Executable File
8 lines
261 B
Bash
Executable File
#!/bin/bash
|
|
# Load Supercollider with custom SuperDirt startup script
|
|
SCRIPT=$(readlink -f "$0")
|
|
SCRIPTPATH=$(dirname "$SCRIPT")
|
|
PROJECTBASEDIR=$(dirname "$SCRIPTPATH")
|
|
|
|
cd "$PROJECTBASEDIR/configs" || exit
|
|
sclang "$PROJECTBASEDIR/configs/superdirt_startup.scd" |