Created
November 27, 2016 14:40
-
-
Save dw72/24dc5891b35b3a7ed53737272ed10b2d to your computer and use it in GitHub Desktop.
Generate and install png icons from svg file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
src=$1 | |
dst=${1%.*}.png | |
[[ -z "$2" ]] && type="apps" || type=$2 | |
for i in 16 22 24 32 64 128 | |
do | |
inkscape -z -e $dst -w $i -h $i $src | |
xdg-icon-resource install --context $type --size $i $dst | |
rm $dst | |
done |
why no 48x48?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In case someone stumbles upon this gist there seems to be a couple changes since this was posted 7 years ago:
The Inkscape flag changes,
-e
is now-o
and-z
doesn't appear to exist or be needed any longer.xgd-icon-resource
needed a--novendor
flag to process names that didn't meet a particular naming convention, due to a vendor prefix now being required. I updated the prefix in the name, however and skipped the flag.I converted it to a function and added it to my .zshrc and made a couple changes to suit my needs.