Skip to content

Commit e2951df

Browse files
committed
J.S. Bach: Die Kunst der Fuge (BWV1080) - change the shape of the colored bullet
Signed-off-by: Davide Madrisan <d.madrisan@proton.me>
1 parent b8662fb commit e2951df

File tree

1 file changed

+8
-4
lines changed
  • src/johann-sebastian-bach/die-kunst-der-fuge-BWV1080

1 file changed

+8
-4
lines changed

src/johann-sebastian-bach/die-kunst-der-fuge-BWV1080/macros.ly

+8-4
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,26 @@ subjectPresentationColor = #(rgb-color 0.00 0.40 0.13)
1212
subjectStrettoColor = #(rgb-color 0.90 0.45 0.00)
1313
endColor = #(rgb-color 0.00 0.00 0.40)
1414

15+
#(define-markup-command (endBullet layout props) ()
16+
"Prints out a bullet for marking a fuga end (coda)"
17+
(interpret-markup layout props
18+
#{ \markup \with-color #endColor \char ##x25a0 #}))
1519
#(define-markup-command (episodeBullet layout props) ()
1620
"Prints out a bullet for marking the start of a fugue exposition"
1721
(interpret-markup layout props
18-
#{ \markup \with-color #episodeColor \char ##x2022 #}))
22+
#{ \markup \with-color #episodeColor \char ##x25a0 #}))
1923
#(define-markup-command (expositionBullet layout props) ()
2024
"Prints out a bullet for marking the start of a fugue exposition"
2125
(interpret-markup layout props
22-
#{ \markup \with-color #expositionColor \char ##x2022 #}))
26+
#{ \markup \with-color #expositionColor \char ##x25a0 #}))
2327
#(define-markup-command (secondExpositionBullet layout props) ()
2428
"Prints out a bullet for marking the start of a fugue exposition"
2529
(interpret-markup layout props
26-
#{ \markup \with-color #secondExpositionColor \char ##x2022 #}))
30+
#{ \markup \with-color #secondExpositionColor \char ##x25a0 #}))
2731
#(define-markup-command (subjectPresentationBullet layout props) ()
2832
"Prints out a bullet for marking the start of a fugue exposition"
2933
(interpret-markup layout props
30-
#{ \markup \with-color #subjectPresentationColor \char ##x2022 #}))
34+
#{ \markup \with-color #subjectPresentationColor \char ##x25a0 #}))
3135

3236
#(define-markup-command (on-color layout props color arg) (color? markup?)
3337
(let* ((stencil (interpret-markup layout props arg))

0 commit comments

Comments
 (0)