Just some music
Go to file
Amolith 38ccd2a406
Add two songs
2024-01-08 11:13:17 -05:00
Guitar Add two songs 2024-01-08 11:13:17 -05:00
Piano fix mistake copied from musescore 2021-09-11 00:09:50 -04:00
.gitignore initial commit 2021-05-16 03:03:24 -04:00
Justfile Update readme and add builds 2023-12-26 16:33:51 -05:00
LICENSE Initial commit 2021-05-16 07:01:58 +00:00
README.org Update readme and add builds 2023-12-26 16:33:51 -05:00

README.org

Music

This is just a repository of music I've transcribed and arranged (maybe even written 👀) over the years. Download archives containing PDFs of everything from the releases page.

.cho

These are ChordPro files and must be "compiled" with the chordpro command or pasted into an online editor (if any exist).

Check the documentation for Windows and macOS installation guides; I have no idea what the best route is because I don't run either full-time. For Linux, I recommend using the version from your distribution's package manager. Arch Linux has it under chordpro and Debian has it under chordii.

Once installed, you can simply run chordpro file.cho and it will spit out a nicely styled PDF in the current working directory.

Configuration

I have no idea how to configure the application on any platform other than Linux and that is accomplished by putting a JSON file in ~/.config/chordpro/chordpro.json. The following is my config and it uses JetBrains Mono because I find that to be a very readable typeface from further away. You'll of course need to edit all of the values so they fit your environment though.

{
    "pdf" : {
        "fontdir" : ["/home/amolith/.fonts/JetBrains/"],
        "fontconfig" : {
            "mono" : {
                ""           : "JetBrainsMono-Regular.ttf",
                "bold"       : "JetBrainsMono-Bold.ttf",
                "italic"     : "JetBrainsMono-Italic.ttf",
                "bolditalic" : "JetBrainsMono-Bold-Italic.ttf",
            },
        },
        "chorus" : {
            "bar" : {"width"  :  1,},
        },
        "fonts" : {
            "title" : { "description" : "mono bold 23", },
            "chord" : { "description" : "mono bold 13", },
            "text" : { "description" : "mono 13", },
            "comment" : { "description" : "mono 13", },
        },
    },
}

.ly

These are LilyPond files! LilyPond is much more complicated than ChordPro and will require some getting used to. I recommend just reading through their official docs if you want to get set up and compile anything found here.

If you're using Emacs and LilyPond.el, you can simply run C-c C-c RET to compile the PDF then C-c C-s to view it. If you want to use Emacs and LilyPond.el, you can reference the related section of my Emacs config file.