android-custom/fontpatcher.pe

12 lines
219 B
Plaintext

#!/usr/bin/env fontforge
# paste the colon sign at the 0xEE01 position and exporte the font as TrueType
# 0xEE01 is used as a separator for clock
Open($1)
Select(0u003A);
Copy();
Select(0uEE01);
Paste();
Generate($1)