2015-03-11 21:15:29 +03:00
|
|
|
for i in *.ttf; do
|
2015-07-06 21:52:43 +03:00
|
|
|
python process.py "$i"
|
|
|
|
echo "Processing $i"
|
2015-03-11 21:15:29 +03:00
|
|
|
done
|
|
|
|
|
2015-08-01 16:47:04 +03:00
|
|
|
for i in ExtraLight Thin; do
|
|
|
|
ttfautohint -n -w G -x 0 -f latn WorkSans-$i#1.ttf WorkSans-$i.ttf
|
|
|
|
echo "WorkSans-$i.ttf hinted"
|
2015-03-20 11:26:02 +03:00
|
|
|
done
|
2015-08-01 16:47:04 +03:00
|
|
|
for i in Light Regular Medium SemiBold Bold ExtraBold Black ; do
|
2017-11-06 22:43:27 +03:00
|
|
|
# ttfautohint -n -w G -x 0 -f latn --control-file=hinting/WorkSans-$i.ctrl WorkSans-$i#1.ttf WorkSans-$i.ttf
|
|
|
|
ttfautohint -n -w G -x 0 -f latn WorkSans-$i#1.ttf WorkSans-$i.ttf
|
2015-03-20 11:26:02 +03:00
|
|
|
echo "WorkSans-$i.ttf hinted"
|
|
|
|
done
|
2015-03-11 21:15:29 +03:00
|
|
|
|
|
|
|
for i in *#1.ttf; do
|
|
|
|
rm "$i"
|
|
|
|
done
|