From ec5acb1bc32c416131f5c6c6ae13695cb1b3a091 Mon Sep 17 00:00:00 2001 From: tux Date: Mon, 24 Jul 2023 08:40:53 +0200 Subject: [PATCH] use custom style overrides --- lieder/vorlage/vorlage.ly | 7 +------ lilypond-common-includes | 2 +- lilypond-custom-includes/base_config.ly | 1 + lilypond-custom-includes/custom_style_overrides.ly | 4 ++++ 4 files changed, 7 insertions(+), 7 deletions(-) create mode 100644 lilypond-custom-includes/custom_style_overrides.ly diff --git a/lieder/vorlage/vorlage.ly b/lieder/vorlage/vorlage.ly index 511fc0c..857ad04 100644 --- a/lieder/vorlage/vorlage.ly +++ b/lieder/vorlage/vorlage.ly @@ -3,12 +3,6 @@ \include "../../lilypond-custom-includes/base_config.ly" -customChordPrintings = { - -\markup { \small "add11" } - -\markup { \small "maj9" } -} -\include "../../lilypond-common-includes/enable_custom_chord_settings.ly" - HEADER = \bookpart { \paper { @@ -199,6 +193,7 @@ TEXT = \markuplist } } } + \fret-chord #"x;2;4;4;4;o;" #"h:1.3.5.11" } \include "../../lilypond-common-includes/standalone_output.ly" \ No newline at end of file diff --git a/lilypond-common-includes b/lilypond-common-includes index ed81b5c..8e6eff1 160000 --- a/lilypond-common-includes +++ b/lilypond-common-includes @@ -1 +1 @@ -Subproject commit ed81b5c9034624529d3a066576e047e2ab9a43b6 +Subproject commit 8e6eff1cad01d367bf476784719b1b11072173ac diff --git a/lilypond-custom-includes/base_config.ly b/lilypond-custom-includes/base_config.ly index a9d087f..feefe33 100644 --- a/lilypond-custom-includes/base_config.ly +++ b/lilypond-custom-includes/base_config.ly @@ -1,6 +1,7 @@ #(ly:set-option 'relative-includes #t) defaultSongStyle = #'börnel +customStyleOverridesFile = "../lilypond-custom-includes/custom_style_overrides.ly" \include "categories.ly" \include "../lilypond-common-includes/general_include.ly" \ No newline at end of file diff --git a/lilypond-custom-includes/custom_style_overrides.ly b/lilypond-custom-includes/custom_style_overrides.ly new file mode 100644 index 0000000..826fbf2 --- /dev/null +++ b/lilypond-custom-includes/custom_style_overrides.ly @@ -0,0 +1,4 @@ +customChordPrintings = { + -\markup { \small "add11" } + -\markup { \small "maj9" } +}