Did latest versions of Sonoma break this?
let frontAppId = frontOnly ? NSWorkspace.shared.frontmostApplication?.processIdentifier : nil
// in sonoma, there is a new new purple thing overlaying the traffic lights, I don't really want this to show up.
// its title is simply "Window", but its bundle id is the same as the parent, so this seems like a strange bodge..
return availableContent!.windows.filter {
guard let app = $0.owningApplication,
let title = $0.title, !title.isEmpty else {
return false
}
return !excludedWindows.contains(app.bundleIdentifier)
&& !title.contains("Item-0")
&& title != "Window"
&& (!frontOnly
|| frontAppId == nil // include all if none is frontmost
|| (frontAppId == app.processID))
}
Just curious, what did you use to inspect and find the title of this icon? It's annoying Apple stick this on the window title bar, it's already in the MenuBar!
Did latest versions of Sonoma break this?
Just curious, what did you use to inspect and find the title of this icon? It's annoying Apple stick this on the window title bar, it's already in the MenuBar!