agave icon indicating copy to clipboard operation
agave copied to clipboard

automate font generation

Open blobject opened this issue 3 years ago • 3 comments

use a script (preferably in tcl but probably in python) to help generate weight (regular, bold, etc.) and stylistic (dotted zero, slashed zero) variants.

blobject avatar Feb 16 '21 22:02 blobject

could as well be Makefile or shell?

alexmyczko avatar Apr 08 '21 10:04 alexmyczko

Do you know of a purely shell way of manipulating .sfd files (eg. substituting one glyph with another)? I couldn't find a way of doing this, but I would definitely choose it if it exists.

blobject avatar Apr 08 '21 11:04 blobject

sed '/StartChar: dollar/,/EndChar/d' some.sfd outputs all sfd without dollar glyph

sed '/StartChar: dollar/,/EndChar/!d' some.sfd outputs only dollar glyph

alexmyczko avatar Apr 08 '21 13:04 alexmyczko