Skip to content

Instantly share code, notes, and snippets.

@maaaks
Last active December 29, 2015 01:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maaaks/7597163 to your computer and use it in GitHub Desktop.
Save maaaks/7597163 to your computer and use it in GitHub Desktop.
Recolor icons to given color using ImageMagick and Potrace. Works perfect with icons from icons8.com.
#!/bin/sh
for file in `ls`
do
convert $file pnm:- | potrace --backend svg --color "#$1" | convert - $file
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment