mirror of
https://github.com/rwinkhart/glamour-temp-MUTN.git
synced 2026-08-28 04:46:29 -04:00
15 lines
370 B
Bash
Executable File
15 lines
370 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for style in ./styles/*.json; do
|
|
echo "Generating screenshot for ${style}"
|
|
filename="`basename -s .json ${style}`.png"
|
|
|
|
light=""
|
|
if [[ $style == *"light"* ]]; then
|
|
light="-l"
|
|
fi
|
|
|
|
./termshot ${light} -o ./styles/gallery/ -f "$filename" ./cmd/gold/gold -s ${style} ./cmd/gold
|
|
pngcrush -ow "./styles/gallery/$filename"
|
|
done
|