mirror of
https://github.com/Julow/Unexpected-Keyboard.git
synced 2025-02-18 02:20:56 +01:00
16 lines
353 B
Plaintext
16 lines
353 B
Plaintext
|
# The special font is used for the symbols of some keys. It is built from SVG
|
||
|
# files, one for each glyph.
|
||
|
|
||
|
# Starts from an existing font file for glyphs that don't have SVG sources yet.
|
||
|
Open($2)
|
||
|
|
||
|
# Imports glyphs, file name is position in the font.
|
||
|
i = 3
|
||
|
while (i < $argc)
|
||
|
Select(Strtol($argv[i]:t:r))
|
||
|
Import($argv[i])
|
||
|
i++
|
||
|
endloop
|
||
|
|
||
|
Generate($1)
|