1
0
Fork 0
mirror of https://github.com/NixOS/nixos-artwork synced 2024-10-18 00:06:24 -04:00
nixos-artwork/bootloader/build.sh

12 lines
176 B
Bash
Raw Permalink Normal View History

#!/usr/bin/env nix-shell
#!nix-shell -p inkscape -p bash -i bash
set -e
set -u
PS4=" $ "
set -x
for f in refind/*.svg refind/*/*.svg; do
inkscape -e "${f%.*}.png" "$f"
done