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
Samuel Dionne-Riel db3edf7665 Adds refind theme.
That is, with pre-rendered icons.
2018-02-04 10:42:33 -05:00

12 lines
176 B
Bash
Executable file

#!/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