diff options
author | David Runge <dave@sleepmap.de> | 2016-08-09 22:12:02 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2016-08-09 22:12:02 +0200 |
commit | e8fbd827bd7a669c132b235af2d0d2d5abcd99bc (patch) | |
tree | ef7402a27cfb8e319577c939df192abd3e0bca22 | |
parent | 7a6e8a7e85e2a22918fea51e5d0f091ca58d94e8 (diff) | |
download | dotfiles-e8fbd827bd7a669c132b235af2d0d2d5abcd99bc.tar.gz dotfiles-e8fbd827bd7a669c132b235af2d0d2d5abcd99bc.tar.bz2 dotfiles-e8fbd827bd7a669c132b235af2d0d2d5abcd99bc.tar.xz dotfiles-e8fbd827bd7a669c132b235af2d0d2d5abcd99bc.zip |
.config/SuperCollider/startup.scd: Adding a generic startupFile for SuperCollider.
-rw-r--r-- | .config/SuperCollider/startup.scd | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.config/SuperCollider/startup.scd b/.config/SuperCollider/startup.scd new file mode 100644 index 0000000..413d8b0 --- /dev/null +++ b/.config/SuperCollider/startup.scd @@ -0,0 +1,7 @@ + +Server.local.options.numOutputBusChannels = 2; +Server.local.options.numInputBusChannels = 2; + +if(("ls /dev/fw1".systemCmd) < 0, { + File.readInterpret(Platform.userConfigDir++"/startupfiles/rme_fireface800.scd"); +}); |