save temporary work

This commit is contained in:
2024-01-07 21:58:34 +01:00
parent c121f45098
commit 85c384d946
22 changed files with 659 additions and 17 deletions

23
docs/configuration.md Normal file
View File

@ -0,0 +1,23 @@
# Configuration
When you install the Quark, you will also inherit a folder called _Configuration_. This folder contains my personal configuration files. They are `.scd` files that will be interpreted during the boot sequence. You can use them to pre-declare synth definitions, add convenience methods, etc:
```bash
├── Configuration
│   ├── Startup.scd
│   └── Synthdefs.scd
```
You do as you wish with these. They are currently very minimal and only include
a method call to setup **MIDI** and a bunch of synth definitions I use. They
rely pretty heavily on [mi-UGens](dependencies.md).
### How to list synths and effects?
In my personal configuration files, I am using the `d` variable to hold a
reference to every synth definition I write. I also use the `f` variable to
pre-write some audio effects that I use often. This is not hard-coded, you can
get rid of it if you want. I am also attaching a few methods to these objects:
- `d.list`: print the list of available synth definitions.
- `d.params('synth')`: print the parameters of the synth definition named `'synth'`.