Remove unused state structure member
[neverball] / scripts / gen-words.sh
1 #!/bin/sh
2
3 LNG=lv
4
5 Ball="Bumba"
6 Goal="Mērķis"
7 Coin="Monēta"
8 Switch="Slēdzis"
9 Texture="Tekstūra"
10 FallOut="Kritiens"
11
12 FONT=FreeMono-Negreta
13 PTSIZE=56
14 DENSITY=70
15
16 convert \
17     \( -size 256x64 xc:transparent -font $FONT -pointsize $PTSIZE \
18         -density $DENSITY -channel A -gravity Center \) \
19     \( -clone 0 -annotate +0+0 "$Ball"    \) \
20     \( -clone 0 -annotate +0+0 "$Goal"    \) \
21     \( -clone 0 -annotate +0+0 "$Coin"    \) \
22     \( -clone 0 -annotate +0+0 "$Switch"  \) \
23     \( -clone 0 -annotate +0+0 "$Texture" \) \
24     \( -clone 0 -annotate +0+0 "$FallOut" \) \
25     -delete 0 -append \
26     -gravity North -background transparent -extent 256x512 \
27     -depth 8 words-$LNG.png
28