1
0
Fork 0
mirror of https://github.com/NixOS/nixos-artwork synced 2024-10-18 14:32:43 -04:00
nixos-artwork/bootloader/grub2-installer/icons/build.sh
2023-12-07 14:41:27 +01:00

14 lines
217 B
Bash
Executable file

#!/usr/bin/env nix-shell
#!nix-shell -p inkscape -p bash -i bash
# Use this to pre-build the png icons using the source files.
set -e
set -u
PS4=" $ "
set -x
for f in *.svg; do
inkscape -o "${f%.*}.png" "$f"
done