2020-12-26 09:23:20 +08:00
|
|
|
#! /usr/bin/env bash
|
2020-12-25 21:30:01 +08:00
|
|
|
|
|
|
|
INKSCAPE="/usr/bin/inkscape"
|
|
|
|
OPTIPNG="/usr/bin/optipng"
|
|
|
|
|
|
|
|
SRC_FILE="thumbnail.svg"
|
|
|
|
|
|
|
|
[[ -f thumbnail-light.png ]] && rm -rf thumbnail-light.png
|
|
|
|
echo Rendering thumbnail-light.png
|
|
|
|
|
|
|
|
$INKSCAPE --export-id=thumbnail-light --export-id-only --export-filename=thumbnail-light.png $SRC_FILE >/dev/null
|
|
|
|
$OPTIPNG -o7 --quiet thumbnail-light.png
|
|
|
|
|
|
|
|
[[ -f thumbnail-dark.png ]] && rm -rf thumbnail-dark.png
|
|
|
|
echo Rendering thumbnail-dark.png
|
|
|
|
$INKSCAPE --export-id=thumbnail-dark --export-id-only --export-filename=thumbnail-dark.png $SRC_FILE >/dev/null
|
|
|
|
$OPTIPNG -o7 --quiet thumbnail-dark.png
|
|
|
|
|
|
|
|
exit 0
|