Last active
October 24, 2024 08:21
-
-
Save ljos/3040846 to your computer and use it in GitHub Desktop.
Find the frontmost/active window in OS X
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
# Copyright @ Bjarte Johansen 2012 | |
# License: http://ljos.mit-license.org/ | |
from AppKit import NSApplication, NSApp, NSWorkspace | |
from Foundation import NSObject, NSLog | |
from PyObjCTools import AppHelper | |
from Quartz import kCGWindowListOptionOnScreenOnly, kCGNullWindowID, CGWindowListCopyWindowInfo | |
class AppDelegate(NSObject): | |
def applicationDidFinishLaunching_(self, notification): | |
workspace = NSWorkspace.sharedWorkspace() | |
activeApps = workspace.runningApplications() | |
for app in activeApps: | |
if app.isActive(): | |
options = kCGWindowListOptionOnScreenOnly | |
windowList = CGWindowListCopyWindowInfo(options, | |
kCGNullWindowID) | |
for window in windowList: | |
if window['kCGWindowOwnerName'] == app.localizedName(): | |
NSLog('%@', window) | |
break | |
break | |
AppHelper.stopEventLoop() | |
def main(): | |
NSApplication.sharedApplication() | |
delegate = AppDelegate.alloc().init() | |
NSApp().setDelegate_(delegate) | |
AppHelper.runEventLoop() | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Make sure
pyobjc
is installed before trying to run this code - ex.pip install pyobjc