aboutsummaryrefslogtreecommitdiffstats
path: root/.config/SuperCollider/startupfiles/startupSystem.scd
blob: 51c400904f9ce7952df7871919bd55fa4c04ed7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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.numOutputBusChannels = 2;
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");