|
Just looking for help if this is possible: I've always preferred the bitmap font Courier at 10 point (coure.fon), not Courier New. Courier has always worked well for me except it's missing the line drawing and other extended characters. Is there a way to add the extra characters to a font like this? Thank you for your help. |
Answered by
Finii
May 19, 2026
Replies: 1 comment 1 reply
1 reply
Answer selected by
rbro
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Nerd Fonts patches outline fonts. It also patches bitmap fonts, but only hybrid fonts and the patched in glyphs are outlines.
In principle it is of course possible to add the line drawing glyphs to a pure bitmap font.
Here is the font file I found:
If you keep the format (
fnt) iirc you are limited to the 255 glyphs, but some slots are still free (7F-A0)Depending on your usecase it might be better/easier to convert the bitmaps to outlines and use it with the correct size as ordinary outline font.
But in principle, open the font in fontforge, copy and paste the line drawing glyphs into the font and regenerate the new bitmap font. I do not know how buggy the bitmap code in fontforge is ;…