Created
February 8, 2016 17:15
-
-
Save rmanly/32681a6b390ea1e5dc4c to your computer and use it in GitHub Desktop.
convert icons using munkilib
This file contains hidden or 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/python | |
import os | |
import sys | |
sys.path.append('/usr/local/munki/munkilib') | |
from iconutils import convertIconToPNG | |
icon_in = sys.argv[1] | |
icon_out = os.path.expanduser('~/Desktop/') | |
convertIconToPNG(icon_in, icon_out) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment