Unexpected-Keyboard/srcs/special_font/build.pe
Jules Aguillon e5ae4816df Add automated checks on layouts
The script `check_layout.py` checks some properties about layouts.
No check is an error.

The result of running this script on every layouts is stored in the file
`check_layout.output`, which is useful to track changes.

Add make rules to run this script as well as `sync_translations`.
2023-06-03 21:03:05 +02:00

15 lines
328 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, first argument is file name for the generated 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($argv[1])