Skip to content

Instantly share code, notes, and snippets.

@ttreitlinger
Created September 11, 2015 06:26
Show Gist options
  • Save ttreitlinger/17d780f6ac1bdb82323a to your computer and use it in GitHub Desktop.
Save ttreitlinger/17d780f6ac1bdb82323a to your computer and use it in GitHub Desktop.
#!/usr/bin/python
try:
from AppKit import NSWorkspace
except ImportError:
print "Can't import AppKit -- maybe you're running python from brew?"
print "Try running with Apple's /usr/bin/python instead."
exit(1)
from datetime import datetime
from time import sleep
last_active_name = None
while True:
active_app = NSWorkspace.sharedWorkspace().activeApplication()
if active_app['NSApplicationName'] != last_active_name:
last_active_name = active_app['NSApplicationName']
print '%s: %s [%s]' % (
datetime.now().strftime('%Y-%m-%d %H:%M:%S'),
active_app['NSApplicationName'],
active_app['NSApplicationPath']
)
sleep(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment