From 5c8a530cbd9aab7057ba89cb0720f5d2935e1383 Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Mon, 28 Jul 2025 23:22:03 +1000 Subject: [PATCH] add script to bake svg paths using imagemagick --- bakeimgs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 bakeimgs diff --git a/bakeimgs b/bakeimgs new file mode 100755 index 0000000..4b0f436 --- /dev/null +++ b/bakeimgs @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +# TODO: write this as a Makefile maybe? + +# ===== Configuration ===== # +IMGS_DIR="imgs" +BAKE_DIR="bake" +# ========================= # + +mkdir -p "$BAKE_DIR" +magick -background '#000000' -size 100x100 "$IMGS_DIR/mirror-icon.svg" "$BAKE_DIR/mirror-icon.png"