File tree Expand file tree Collapse file tree 4 files changed +49
-0
lines changed
Extensions/SystemOverwrites Expand file tree Collapse file tree 4 files changed +49
-0
lines changed Original file line number Diff line number Diff line change 1+ + LinuxPlatform {
2+ startupFiles {^super.startupFiles}
3+ startup {
4+
5+ helpDir = this .systemAppSupportDir++"/Help" ;
6+
7+ // Server setup
8+ Server .program = "exec ./scsynth" ; //f0 edited
9+ Server .default.options.ugenPluginsPath = "plugins:share" ; //f0 added
10+ "SC_SYNTHDEF_PATH" .setenv(this .userAppSupportDir+/+"synthdefs" ); //f0 added
11+
12+ // Score setup
13+ Score .program = Server .program;
14+
15+ // default jack port hookup
16+ "SC_JACK_DEFAULT_INPUTS" .setenv("system" );
17+ "SC_JACK_DEFAULT_OUTPUTS" .setenv("system" );
18+
19+ // automatically start jack when booting the server
20+ // can still be overridden with JACK_NO_START_SERVER
21+ "JACK_START_SERVER" .setenv("true" );
22+
23+ // load user startup file
24+ this .loadStartupFiles;
25+ }
26+ systemAppSupportDir {
27+ ^File .getcwd+/+"share/system" ;
28+ }
29+ userAppSupportDir {
30+ ^File .getcwd+/+"share/user" ;
31+ }
32+ systemExtensionDir {
33+ ^this .systemAppSupportDir+/+"Extensions" ;
34+ }
35+ userExtensionDir {
36+ ^this .userAppSupportDir+/+"Extensions" ;
37+ }
38+ userConfigDir {
39+ ^this .userAppSupportDir;
40+ }
41+ resourceDir {
42+ ^this .systemAppSupportDir;
43+ }
44+ }
Original file line number Diff line number Diff line change 1+ + Platform {
2+ *initClass {
3+ defaultStartupFile= "./share/user/startup.scd" ;
4+ }
5+ }
You can’t perform that action at this time.
0 commit comments