glow/gallery.sh
2019-11-28 08:35:24 +01:00

14 lines
339 B
Bash
Executable file

#!/bin/bash
for style in ./styles/*.json; do
echo "Generating screenshot for ${style}"
filename="gold_`basename -s .json ${style}`.png"
light=""
if [[ $style == *"light"* ]]; then
light="-l"
fi
./termshot ${light} -o ./styles/ -f "$filename" ./gold -s ${style}
pngcrush -ow "./styles/$filename"
done