-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
James Bradbury
committed
Sep 19, 2022
1 parent
f494965
commit 2ddace9
Showing
1 changed file
with
16 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,29 @@ | ||
-- This file contains variables that can change the default behaviour of ReaCoMa | ||
-- Set custom variables in this file to alter how ReaCoMa works. | ||
-- This is intended for people who need specific behaviour rather than the general case. | ||
|
||
------------------------------------------------------------------------------------- | ||
-- Parameter Description: Location for files generated by ReaCoMa | ||
-- Default: "source" | ||
-- Options: | ||
-- media | ||
-- description: new files will be put in the REAPER media folder | ||
-- <anything> | ||
-- description: You can set a custom path. It has to be an absolute path and be valid. | ||
|
||
-- Options: | ||
-- source | files will be placed with the source file that processed them | ||
-- media | new files will be put in the REAPER media folder | ||
-- <anything> | You can set a custom path. It has to be an absolute path and be valid. | ||
|
||
-- Examples: | ||
-- reacoma.output = "source" | ||
-- reacoma.output = "media" | ||
-- reacoma.output = "~/my_custom_output" | ||
-- reacoma.output = "source" | ||
-- reacoma.output = "media" | ||
-- reacoma.output = "~/my_custom_output" | ||
reacoma.output = "source" | ||
------------------------------------------------------------------------------------- | ||
|
||
------------------------------------------------------------------------------------- | ||
-- Parameter Description: Custom binary location | ||
-- Default: "default" | ||
|
||
-- Options: | ||
-- description: You can set a custom path. It has to be an absolute path and be valid. | ||
-- default | The default location of the binaries that ship with ReaCoMa. | ||
-- <anything> | You can set a custom path. It has to be an absolute path and be valid. | ||
|
||
-- Examples: | ||
-- reacoma.binaries = "/usr/local/bin/" | ||
reacoma.binaries = "default" | ||
------------------------------------------------------------------------------------- |