aboutsummaryrefslogtreecommitdiffstats
path: root/.config/SuperCollider/synthdefs.scd
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2019-03-05 09:34:32 +0100
committerDavid Runge <dave@sleepmap.de>2019-03-05 09:34:32 +0100
commit1ee10e6b733a81389d9718363deb6cf7daec79d3 (patch)
tree9c98d99dc0d0b2805f7d674688b7bad345704376 /.config/SuperCollider/synthdefs.scd
parent688a8394f0e3f7c962da8fcb7da2002822f99de2 (diff)
parentc1e5d08d58034c8b53d4789dd32983016f4a5456 (diff)
downloaddotfiles-1ee10e6b733a81389d9718363deb6cf7daec79d3.tar.gz
dotfiles-1ee10e6b733a81389d9718363deb6cf7daec79d3.tar.bz2
dotfiles-1ee10e6b733a81389d9718363deb6cf7daec79d3.tar.xz
dotfiles-1ee10e6b733a81389d9718363deb6cf7daec79d3.zip
Merge branch 'master' of sleepmap.de:config/dotfiles
* 'master' of sleepmap.de:config/dotfiles: .config/SuperCollider/functions.scd: Minor style fixes and adding of a convenience function for MIDI, to map to a given Bus. .config/SuperCollider/functions.scd: Adding SSR specific helper functions. Adding TODOs. .config/SuperCollider/functions.scd: Adding simple helper functions to connect/disconnect JACK clients by name:port_name. Adding function to add additional channels (above hardware in and outputs), which automatically increments Server.local.options.num{In,Out}putBuschannels. .config/SuperCollider/synthdefs.scd: Being more clear in the description. .config/SuperCollider/startup.scd: Introducing the concept of additional channels (to scsynth), above the hardware in and outputs (to be defined before starting the server). Conditionally adding functions.scd, holding custom functions. .config/qtile/config.py: Adding qutebrowser to web tag. Adding Carla and Cadence to audio tag. .config/qtile/config.py: Adding WIP for retrieving and killing compton on demand. Adding call to DIY backlight script call, instead of xbacklight.
Diffstat (limited to '.config/SuperCollider/synthdefs.scd')
-rw-r--r--.config/SuperCollider/synthdefs.scd4
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/SuperCollider/synthdefs.scd b/.config/SuperCollider/synthdefs.scd
index 4a75b4c..51d320d 100644
--- a/.config/SuperCollider/synthdefs.scd
+++ b/.config/SuperCollider/synthdefs.scd
@@ -1,6 +1,6 @@
postln("Adding custom SynthDefs");
-// route 8 Ins to Out
+// route 8 Ins to 8 Outs
SynthDef(\route8BussesToOut, {
arg in=0,
volume=#[0,0,0,0,0,0,0,0],
@@ -25,7 +25,7 @@ SynthDef(\filter8Rumble, {
);
}).add;
-// Mix down SoundIns to one
+// Mix down SoundIns to one Out
SynthDef(\mix4BussesToOut, {
arg in=#[0,1,2,3],
volume=#[0,0,0,0],