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 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() |
How to identify the active window (kCGWindowNumber)?
For example from Chrome can be several windows but the top one
I needed to modify the kCGWindowOwnerName/localizedName check to be window['kCGWindowOwnerPID'] == app.processIdentifier()
. Specifically, for iTerm the kCGWindowOwnerName is "iTerm" but the app.localizedName() is "iTerm2".
Make sure pyobjc
is installed before trying to run this code - ex. pip install pyobjc
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you for share this piece of code. I was struggling to do the same on Swift and your Python implementation saved me. 😃