From 9272b5cc195a72a1ba3d0127961e6cea6533a23c Mon Sep 17 00:00:00 2001 From: David Runge Date: Sat, 29 Apr 2017 18:40:56 +0200 Subject: .config/SuperCollider/startup.scd: Use load() instead of readAllString.interpret for loading additional configuration. --- .config/SuperCollider/startup.scd | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to '.config/SuperCollider') diff --git a/.config/SuperCollider/startup.scd b/.config/SuperCollider/startup.scd index a6c1c59..8406ad5 100644 --- a/.config/SuperCollider/startup.scd +++ b/.config/SuperCollider/startup.scd @@ -1,18 +1,14 @@ Server.local.options.numOutputBusChannels = 2; Server.local.options.numInputBusChannels = 2; - -~config; +Server.local.options.sampleRate = 48000.0; if(PathName("/dev/fw1").isFile, { postln("Adding settings for RME Fireface 800."); - ~config = File.new(Platform.userConfigDir++"/startupfiles/rme_fireface800.scd", "r"); + load(Platform.userConfigDir++"/startupfiles/rme_fireface800.scd"); }); if(("aplay -l |grep Babyface > /dev/null".systemCmd) == 0, { postln("Adding settings for RME Babyface."); - ~config = File.new(Platform.userConfigDir++"/startupfiles/rme_babyface.scd", "r"); + load(Platform.userConfigDir++"/startupfiles/rme_babyface.scd"); }); -if(~config.isNil.not, { - ~config.readAllString.interpret; -}); -- cgit v1.2.3-54-g00ecf