mirror of
https://github.com/charmbracelet/glow
synced 2024-12-14 22:22:26 +00:00
14 lines
334 B
Bash
Executable file
14 lines
334 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/ -f "$filename" ./gold -s ${style}
|
|
pngcrush -ow "./styles/$filename"
|
|
done
|