mirror of
https://github.com/Julow/Unexpected-Keyboard.git
synced 2024-11-22 15:23:11 +01:00
1b6deb7fed
The accents are taken from the Roboto Regular font (Apache 2.0), added the dotted circle and exported with FontForge. The argument to FontForge's Import function are changed, the fifth argument controls the accuracy and needed to be lowered otherwise the grave accent wouldn't be rendered at all.
15 lines
306 B
Plaintext
15 lines
306 B
Plaintext
# The special font is used for the symbols of some keys. It is built from SVG
|
|
# files, one for each glyph.
|
|
New()
|
|
|
|
# Imports glyphs, file name is position in the font.
|
|
i = 2
|
|
while (i < $argc)
|
|
Select(Strtol($argv[i]:t:r, 16))
|
|
Import($argv[i], 0, 0, 4.0, 0.1)
|
|
AutoWidth(150)
|
|
i++
|
|
endloop
|
|
|
|
Generate($1)
|