I'm currently developing a Safari App Extension, that consists of two parts:
- A host status-bar only application
- The Safari extension
Further the host application offers a global shortcut, which opens a popover in the status bar. However, I want to check which application's window is currently active, because I do not want to open the popover if a Safari window is currently active. Is there any way to find out using Swift which application's window is currently active?
Thank you for your help.
So, with the comments from Alexander and Wileke I think I found a solution.
With
NSWorkspace.shared.frontmostApplication
you can check, if Safari is currently active. But as Wileke noted, that does not mean, that it has an active window. Therefore, we useCGWindowListCopyWindowInfo
to first get all windows and check if at least one of them belongs to Safari by comparing the PIDs.This way, we can safely say that Safari must have currently an active window that receives key events. This must be true as there is now way that Safari is front most without any windows or that Safari as an window but is not front most at the same time.
Well, unless I missed something. But for now it works.
Here is code I came up with: