Skip to content

Commit 343bd60

Browse files
authored
Add a bunch of manually ignored bundle ids (#1773)
1 parent 68261aa commit 343bd60

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

Amethyst/Categories/NSRunningApplication+Manageable.swift

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,17 @@ private let ignoredBundleIDs = Set([
3333
"com.apple.controlcenter",
3434
"com.apple.SoftwareUpdateNotificationManager",
3535
"com.apple.TextInputMenuAgent",
36-
"com.apple.TextInputSwitcher"
36+
"com.apple.TextInputSwitcher",
37+
"com.apple.WindowManager",
38+
"com.apple.accessibility.AXVisualSupportAgent",
39+
"com.apple.talagent",
40+
"com.apple.wallpaper.agent",
41+
"com.apple.CharacterPaletteIM",
42+
"com.apple.LocalAuthentication.UIAgent",
43+
"com.apple.security.Keychain-Circle-Notification",
44+
"com.apple.backgroundtaskmanagement.agent",
45+
"com.apple.CoreLocationAgent",
46+
"com.apple.OSDUIHelper"
3747
])
3848

3949
protocol BundleIdentifiable {

Amethyst/Debug/AppsInfo.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ struct Apps: ParsableCommand {
2020
let app = SIApplication(runningApplication: application)
2121
print("""
2222
Title: \(app.title() ?? "<no title>")
23+
Bundle Identifier: \(application.bundleIdentifier ?? "<no id>")
24+
Activation Policy: \(application.activationPolicy)
2325
pid: \(app.pid())
2426
Manageable: \(application.isManageable)
2527

0 commit comments

Comments
 (0)