aboutsummaryrefslogtreecommitdiffstats
path: root/.config/SuperCollider/startup.scd
blob: 8406ad5cc9521de3a03da6d880f19f9f2e388931 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Server.local.options.numOutputBusChannels = 2;
Server.local.options.numInputBusChannels = 2;
Server.local.options.sampleRate = 48000.0;

if(PathName("/dev/fw1").isFile, {
  postln("Adding settings for RME Fireface 800.");
  load(Platform.userConfigDir++"/startupfiles/rme_fireface800.scd");
});

if(("aplay -l |grep Babyface > /dev/null".systemCmd) == 0, {
  postln("Adding settings for RME Babyface.");
  load(Platform.userConfigDir++"/startupfiles/rme_babyface.scd");
});