11 lines
297 B
Bash
Executable File
11 lines
297 B
Bash
Executable File
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p inkscape
|
|
# Uses Inkscape to generate .png files from the provided input
|
|
|
|
inkscape -o 16x.png -w 16 $1
|
|
inkscape -o 32x.png -w 32 $1
|
|
inkscape -o 48x.png -w 48 $1
|
|
inkscape -o 64x.png -w 64 $1
|
|
inkscape -o 96x.png -w 96 $1
|
|
inkscape -o 128x.png -w 128 $1
|