1
0
Files
scoobidules/startup.scd
2025-06-14 16:41:54 +02:00

14 lines
370 B
Plaintext

s.options.numWireBufs = (8192*12000);
s.options.memSize = 1048576;
thisProcess.platform.recordingsDir = "~/Production/SuperCollider/recordings".standardizePath;
// load common synthdefs
~synths = PathName(
Platform.userHomeDir ++ "/Production/SuperCollider/scoobidules/synthdefs"
).entries;
~synths.do({|item| item.fullPath.load});
"giddy up, bucko".postln;
s.boot;