furnace/res/fonts/bake.sh
tildearrow 988c11c193 add original font files
prepare for using zlib instead of stb for compression
Unifont not included due to its size... I have plans to load it in a more size-efficient way
2024-04-06 18:25:08 -05:00

7 lines
132 B
Bash
Executable file

#!/bin/bash
mkdir -p compressed
for i in *.ttf *.otf; do
echo "$i"
cat "$i" | zlib-flate -compress=9 > compressed/"$i".zl
done