jesseduffield.lazygit/vendor/github.com/charmbracelet/glamour/gallery.sh
Jesse Duffield 3a191b913f Add release notes popup after update
We're using glamour for rendering the markdown, and I'm interested in using it in other places
too
2024-01-13 19:26:26 +11:00

21 lines
516 B
Bash

#!/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
# take screenshot
./termshot ${light} -o ./styles/gallery/ -f "$filename" glow -s ${style}
# add border
convert -bordercolor black -border 16x16 "./styles/gallery/$filename" "./styles/gallery/$filename"
# optimize filesize
pngcrush -ow "./styles/gallery/$filename"
done