Created
February 6, 2019 21:58
-
-
Save adrianmihalko/cfc076b28a3ff4652766a295972a9945 to your computer and use it in GitHub Desktop.
Convert all white transparent icons into transparent black (change icon color)
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
for f in *.png ; do convert "$f" -fill black -colorize 100 "${f%.png}.png" ; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment