diff options
author | rekado <rekado@elephly.net> | 2016-06-12 15:45:29 +0200 |
---|---|---|
committer | rekado <rekado@elephly.net> | 2016-06-12 15:45:29 +0200 |
commit | 6335030cf040f74816c1fdaadfa5e9f73c244857 (patch) | |
tree | 5873e85aa61cc1c4a3238b6de7741d28cb66c559 /04-white-noise | |
parent | accd8176b48e32d0c13873708b6a93127301d8c0 (diff) |
white noise: Move pause to "common.ly".
Diffstat (limited to '04-white-noise')
-rw-r--r-- | 04-white-noise/04-white-noise.ly | 2 | ||||
-rw-r--r-- | 04-white-noise/music/common.ly | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/04-white-noise/04-white-noise.ly b/04-white-noise/04-white-noise.ly index a883be1..2a800c3 100644 --- a/04-white-noise/04-white-noise.ly +++ b/04-white-noise/04-white-noise.ly @@ -6,9 +6,9 @@ copyright = \markup { \char ##x00A9 "2002—2016 Ricardo Wurmus" } } -whiteNoise = \repeat unfold 3 { r2. r2 } % TODO: how long? \include "../settings.ly" +\include "music/common.ly" \include "music/bass.ly" \include "music/keys.ly" \include "music/stick.ly" diff --git a/04-white-noise/music/common.ly b/04-white-noise/music/common.ly new file mode 100644 index 0000000..50b5439 --- /dev/null +++ b/04-white-noise/music/common.ly @@ -0,0 +1 @@ +whiteNoise = \repeat unfold 3 { r2. r2 } % TODO: how long? |