Skip to content

Instantly share code, notes, and snippets.

@rderewianko
Last active July 16, 2017 15:14
Show Gist options
  • Save rderewianko/3c89b705d89eea46d01e to your computer and use it in GitHub Desktop.
Save rderewianko/3c89b705d89eea46d01e to your computer and use it in GitHub Desktop.
iconizes folders in osx
#!/usr/bin/env python
import Cocoa
import sys
Cocoa.NSWorkspace.sharedWorkspace().setIcon_forFile_options_(Cocoa.NSImage.alloc().initWithContentsOfFile_(sys.argv[1].decode('utf-8')), sys.argv[2].decode('utf-8'), 0) or sys.exit("Unable to set file icon")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment