-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfig.lua
68 lines (62 loc) · 1.5 KB
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
config = {}
config["settings"] = {
["version_major"] = 1,
["version_minor"] = 3,
["version_patch"] = 0,
["playback"] = 0,
["length"] = 16,
["root"] = 0,
["scale"] = 1,
["octaves"] = 11,
["delete_all_length"] = 3,
["save_path"] = _path.audio .. "arcologies/",
["crypt_path"] = _path.audio .. "arcologies/crypt/",
["crypt_default_name"] = "DEFAULT",
["crypts_path"] = _path.audio .. "crypts/",
["maps_path"] = _path.data .. "arcologies/maps/"
}
config["page_titles"] = {
"ARCOLOGIES",
"DESIGNER",
"ANALYSIS"
}
if config.settings.dev_mode then
table.insert(config.page_titles, "DEV")
end
config["home_items"] = {
"BPM",
"LENGTH",
"ROOT",
"SCALE",
"TRANSPOSE",
"DOCS"
}
config["popup_messages"] = {
["delete_all"] = {
["start"] = "DELETING ALL IN...",
["abort"] = "ABORTED",
["done"] = "DELETED ALL CELLS"
},
["structure"] = {
["start"] = "",
["abort"] = "",
["done"] = "CHOSE"
},
["note"] = {
["start"] = "NOTE...",
["abort"] = "ABORTED",
["done"] = "CHOSE"
}
}
config["arc_bindings"] = {
{ id = "norns_e1", label = "NORNS E1" },
{ id = "norns_e2", label = "NORNS E2" },
{ id = "norns_e3", label = "NORNS E3" },
{ id = "browse_cells", label = "BROWSE CELLS" },
{ id = "crypt_directory", label = "CRYPT DIRECTORY" },
{ id = "danger_zone_clock_sync", label = "clock.sync(x)" },
{ id = "transpose", label = "TRANSPOSE" },
{ id = "bpm", label = "BPM" },
{ id = "global_psyop", label = "GLOBAL PSYOP" },
}
return config