aboutsummaryrefslogtreecommitdiffstats
path: root/.config/SuperCollider/startupfiles/startupSystem.scd
diff options
context:
space:
mode:
authorDavid Runge <david.runge@frqrec.com>2014-01-01 22:35:36 +0100
committerDavid Runge <david.runge@frqrec.com>2014-01-01 22:35:36 +0100
commitc2d0fa50a8c7b021c9c85b6c839004d8c417b6db (patch)
treea357196b60f00b20fae67b630c0738f309b44f11 /.config/SuperCollider/startupfiles/startupSystem.scd
parentf485de5a631b2becd1910eb47bf7adf846663f20 (diff)
downloaddotfiles-c2d0fa50a8c7b021c9c85b6c839004d8c417b6db.tar.gz
dotfiles-c2d0fa50a8c7b021c9c85b6c839004d8c417b6db.tar.bz2
dotfiles-c2d0fa50a8c7b021c9c85b6c839004d8c417b6db.tar.xz
dotfiles-c2d0fa50a8c7b021c9c85b6c839004d8c417b6db.zip
Adding Supercollider startup files
Diffstat (limited to '.config/SuperCollider/startupfiles/startupSystem.scd')
-rw-r--r--.config/SuperCollider/startupfiles/startupSystem.scd15
1 files changed, 15 insertions, 0 deletions
diff --git a/.config/SuperCollider/startupfiles/startupSystem.scd b/.config/SuperCollider/startupfiles/startupSystem.scd
new file mode 100644
index 0000000..474c732
--- /dev/null
+++ b/.config/SuperCollider/startupfiles/startupSystem.scd
@@ -0,0 +1,15 @@
+load("/home/dave/.config/SuperCollider/startupfiles/shared.scd");
+"Starting with internal system settings.".postln;
+Server.local.options.sampleRate = 48000.0;
+Server.local.options.blockSize = 128;
+Server.local.options.numOutputBusChannels = 4;
+Server.local.options.numInputBusChannels = 2;
+Server.local.options.maxNodes = 65536;
+Server.local.options.memSize = 2097152; // 1048576
+Server.local.options.maxSynthDefs = 16384;
+
+// hook up jack ports to audio channels
+//"SC_JACK_DEFAULT_INPUTS".setenv("system:capture_1,system:capture_2");
+"SC_JACK_DEFAULT_INPUTS".setenv("system");
+//"SC_JACK_DEFAULT_OUTPUTS".setenv("system:playback_1,system:playback_2,system:playback_3,system:playback_4");
+"SC_JACK_DEFAULT_OUTPUTS".setenv("system");