Check out my first novel, midnight's simulacra!
Fonts: Difference between revisions
From dankwiki
(add whichfont script) |
No edit summary |
||
(3 intermediate revisions by the same user not shown) | |||
Line 9: | Line 9: | ||
* What font is used for this character? | * What font is used for this character? | ||
<nowiki> | <nowiki> | ||
#!/bin/sh | #!/bin/sh | ||
set -e | set -e | ||
CHAR="$1" | CHAR="$1" | ||
for i in sans serif mono ; do | for i in sans serif mono ; do | ||
FC_DEBUG=4 pango-view --font=$i -q -t "$CHAR" 2>&1 | \ | FC_DEBUG=4 pango-view --font=$i -q -t "$CHAR" 2>&1 | \ | ||
grep -o 'family: "[^"]\+' | cut -c 10- | tail -n 1 | grep -o 'family: "[^"]\+' | cut -c 10- | tail -n 1 | ||
done | done</nowiki> | ||
</ | |||
* Clear font cache/indexes: <tt>fc-cache -f -v</tt> | |||
==Some fonts worth checking out== | ==Some fonts worth checking out== | ||
Line 30: | Line 28: | ||
===Monaco=== | ===Monaco=== | ||
* http://www.gringod.com/wp-upload/software/Fonts/Monaco_Linux.ttf | * http://www.gringod.com/wp-upload/software/Fonts/Monaco_Linux.ttf | ||
===Hack=== | |||
* https://github.com/source-foundry/Hack |
Latest revision as of 09:42, 24 November 2020
Fonts can be installed by copying the appropriate .otf or .ttf file to ~/.fonts.
Working with font-config
- Dereference a font alias with `fc-match`:
[schwarzgerat](0) $ fc-match sans-serif DejaVuSans.ttf: "DejaVu Sans" "Book" [schwarzgerat](0) $
- What font is used for this character?
#!/bin/sh set -e CHAR="$1" for i in sans serif mono ; do FC_DEBUG=4 pango-view --font=$i -q -t "$CHAR" 2>&1 | \ grep -o 'family: "[^"]\+' | cut -c 10- | tail -n 1 done
- Clear font cache/indexes: fc-cache -f -v