mirror of
https://github.com/Julow/Unexpected-Keyboard.git
synced 2024-11-26 17:23:17 +01:00
e5ae4816df
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`.
15 lines
328 B
Plaintext
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])
|