feat: load synthef on startup
This commit is contained in:
14
startup.scd
Normal file
14
startup.scd
Normal file
@ -0,0 +1,14 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user