1
1
forked from fr/guitar

first commit

This commit is contained in:
Filip Rojek 2024-12-23 19:57:18 +01:00
parent ec803cd878
commit a63225af66
3 changed files with 107 additions and 0 deletions
content
makefile

38
content/race/race.cho Normal file

@ -0,0 +1,38 @@
{title: Dostihy/Race}
predhra ale powerchords - zacit slabe a zesilovat
[D] [A] [C] [G]
[D] [A] [C] [G] G jen jednou
refren kus
Its a race, they say, we all fall, they dont care,
Replaceable pieces in an endless affair.
sloka
Keep running, almost there, what are you waiting for?
Why arent you moving, whats holding you back..
Im paralyzed, stuck in place, its too much, I crack (stuck, ..
A product of something that nobody sees,
Feeling empty, like Im on my knees.
Refren
{soc}
Its a race, they say, we all fall, they dont care,
Replaceable pieces in an endless affair.
{eoc}
Just another name in the crowd, fading clear.
Yeah, its on you—no one else is near.
sloka 2
Cant tell if Im breaking or just feeling numb,
Worn out, used up, am I coming undone?
Everyone passes, Im left in the dust,
In a world that pretends theres someone to trust.
Im screaming inside, but no one can hear

@ -0,0 +1,29 @@
{title: Sami sobě}
[Am]sami sobe muzeme si dokola lhat
[Em]treba v tom ze to byl jenom zkrat
[Am]ze se rano probudime a budeme zas
[Em]tam nez prvni kapka vstreba se do nas
[Am]utapim se stale ve tvych slovech co nas
[Em]pomalicku louci a zkracuji nam cas
[Am]ktereho jsem az moc vlozila do tebe a pak
[Em]prosim sebe a nahore nebe at ten hlas
[Dm]tvuj se zmeni v neco co ztisi bolest snáz - solo
[Am]kvuli tobe si kazdy vecer preju necitit
[Em]ve svete stvorenym tebou s me nechal omamit
[Am]ve tvy realite ale nevis ze lakas me pryc
[Em]tam kde s tebou chci ale nedokazu byt
[Dm]tvoje naruc je mou pasti karmou z prvniho pohledu ktera me nespusti uz z dohledu
BRIDGE
[F] [G] [Am]
[F] [G] [Em]

40
makefile Normal file

@ -0,0 +1,40 @@
ifdef CHORDPRO_PIPELINE
CHORDPRO_CMD = chordpro
else
CHORDPRO_CMD = docker run -ti --rm --env HOME=$(HOME) --env USER=$(USER) --workdir $(shell pwd) --volume $(HOME):$(HOME) chordpro/chordpro:latest chordpro --config=chordpro.json
endif
SRC_DIR := $(wildcard content/*)
SRC_EXTENSION := .cho
SONG_CHO := $(foreach dir,$(SRC_DIR),$(wildcard $(dir)/*$(SRC_EXTENSION)))
SONG_PDF := $(patsubst %$(SRC_EXTENSION),%.pdf,$(SONG_CHO))
SONG_HTML := $(patsubst %$(SRC_EXTENSION),%.html,$(SONG_CHO))
SONGBOOK := songbook.pdf
.DEFAULT_GOAL := pdf
%.pdf: %$(SRC_EXTENSION)
$(CHORDPRO_CMD) -o $@ $<
%.html: %$(SRC_EXTENSION)
$(CHORDPRO_CMD) -o $@ $<
all: pdf html songbook
$(SONGBOOK): $(SONG_PDF)
gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=$@ $^
.PHONY: html
html: $(SONG_HTML)
.PHONY: pdf
pdf: $(SONG_PDF)
.PHONY: songbook
songbook: pdf
$(MAKE) $(SONGBOOK)
.PHONY: clean
clean:
rm -f $(SONG_PDF) $(SONG_HTML) $(SONGBOOK)