summaryrefslogtreecommitdiff
path: root/04-white-noise/04-white-noise.ly
diff options
context:
space:
mode:
authorrekado <rekado@elephly.net>2015-11-16 17:32:15 +0100
committerrekado <rekado@elephly.net>2015-11-16 17:32:15 +0100
commit519af5fb28d5ecba4a83b4041f1cf1ef490cdfc4 (patch)
treeb84724f1c8459eb908fe35619692d0d814838ccd /04-white-noise/04-white-noise.ly
parent2f3d00afbd18dd31a0104bd2e7240ab039110f32 (diff)
white noise: Add click.
Diffstat (limited to '04-white-noise/04-white-noise.ly')
-rw-r--r--04-white-noise/04-white-noise.ly8
1 files changed, 7 insertions, 1 deletions
diff --git a/04-white-noise/04-white-noise.ly b/04-white-noise/04-white-noise.ly
index 1f57377..d74a2e6 100644
--- a/04-white-noise/04-white-noise.ly
+++ b/04-white-noise/04-white-noise.ly
@@ -12,6 +12,7 @@ whiteNoise = { R1*5 } % TODO: how long?
\include "parts/bass.ly"
\include "parts/keys.ly"
\include "parts/stick.ly"
+\include "parts/click.ly"
AllMusic = <<
\new Staff = "keyboard" { \keyboard }
@@ -22,7 +23,12 @@ AllMusic = <<
%% Two scores are needed: one with unfolded repeats for MIDI and the
%% other with regular repeats for notation.
\score {
- \unfoldRepeats { \AllMusic }
+ \unfoldRepeats {
+ <<
+ \AllMusic
+ \new DrumStaff { \click }
+ >>
+ }
\midi { \tempo 4 = 120 }
}