Today I Learned Notes to self about software development

    Converting Fonts⁚ TTC to TTF

    I like the font Iosevka but I can only download it as a TTC and often want to use it on the web, which requires a TTF.

    You can convert it with Font Forge CLI easily

    Install

    sudo apt install fontforge
    

    Usage

    fontforge -lang=ff -c 'Open($1); Generate($2);' <YOUR_FONT>.ttc <YOUR_FONT>.ttf
    

    It does output a warning, but I haven’t had issues using the font so it’s probably fine ¯\(ツ)