-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sc
41 lines (27 loc) · 998 Bytes
/
setup.sc
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
/*
Configuration Options stored in a Dictionary
Use:
LyConfig.options[\output]
LyConfig.options[\output] = "...another folder..."
*/
LyConfig {
classvar <>options ;
*initClass {
options = Dictionary[
/*--- Set to the one directory you wish all scly generate files to be saved. ---*/
\output -> "~/scwork/ly-output",
/*--- List of directories where SCLy will look for LilyPond templates.---*/
\template -> "~/scwork/scly/LyTemplates/templateA.ly",
/*--- Default accidental spelling.---*/
\accidental_spelling -> \mixed,
/*--- List of LilyPond files that SCLy will '\include' in all generated *.ly files.---*/
\lilypond_includes -> nil ,
/*--- PDF viewer to use to view generated PDF files.
When nil your environment should know how to open PDFs. ---*/
\pdf_viewer -> "orakular",
/*--- MIDI player to play MIDI files.
When nil your environment should know how to open MIDIs. ---*/
\midi_player -> "timidity"
];
}
}