diff options
author | David Runge <dave@sleepmap.de> | 2017-11-03 18:31:43 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2017-11-03 18:31:43 +0100 |
commit | ebb08ebba9b25aa3d37870853e6463bc430eef08 (patch) | |
tree | c1be169757c512d3d2d7b6d3f13cb5f5ae822af5 | |
parent | a91295a574befad375b03230136370c75290cce4 (diff) | |
download | dotfiles-ebb08ebba9b25aa3d37870853e6463bc430eef08.tar.gz dotfiles-ebb08ebba9b25aa3d37870853e6463bc430eef08.tar.bz2 dotfiles-ebb08ebba9b25aa3d37870853e6463bc430eef08.tar.xz dotfiles-ebb08ebba9b25aa3d37870853e6463bc430eef08.zip |
.config/SuperCollider/startupfiles/*: Adding startup files for Behringer XUSB and Focusrite 18i20.
-rw-r--r-- | .config/SuperCollider/startupfiles/behringer_xusb.scd | 5 | ||||
-rw-r--r-- | .config/SuperCollider/startupfiles/focusrite_scarlett18i20.scd | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/.config/SuperCollider/startupfiles/behringer_xusb.scd b/.config/SuperCollider/startupfiles/behringer_xusb.scd new file mode 100644 index 0000000..fce30ef --- /dev/null +++ b/.config/SuperCollider/startupfiles/behringer_xusb.scd @@ -0,0 +1,5 @@ +Server.local.options.numOutputBusChannels = 32; +Server.local.options.numInputBusChannels = 32; +Server.local.options.blockSize = 128; // default: 64 +Server.local.options.device = "Behringer XUSB"; + diff --git a/.config/SuperCollider/startupfiles/focusrite_scarlett18i20.scd b/.config/SuperCollider/startupfiles/focusrite_scarlett18i20.scd new file mode 100644 index 0000000..d8c9060 --- /dev/null +++ b/.config/SuperCollider/startupfiles/focusrite_scarlett18i20.scd @@ -0,0 +1,4 @@ +Server.local.options.numOutputBusChannels = 20; +Server.local.options.numInputBusChannels = 18; +Server.local.options.blockSize = 128; // default: 64 +Server.local.options.device = "Focusrite Scarlett 18i20"; |