mirror of
https://github.com/charmbracelet/glow.git
synced 2026-08-27 02:20:39 +02:00
8 lines
248 B
Bash
Executable file
8 lines
248 B
Bash
Executable file
#!/bin/bash
|
|
|
|
for style in ./styles/*.json; do
|
|
echo "Generating screenshot for ${style}"
|
|
filename="gold_`basename -s .json ${style}`.png"
|
|
termshot -o ./styles/ -f "$filename" ./gold -s ${style}
|
|
pngcrush -ow "./styles/$filename"
|
|
done
|