File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,17 @@ private let ignoredBundleIDs = Set([
33
33
" com.apple.controlcenter " ,
34
34
" com.apple.SoftwareUpdateNotificationManager " ,
35
35
" 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 "
37
47
] )
38
48
39
49
protocol BundleIdentifiable {
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ struct Apps: ParsableCommand {
20
20
let app = SIApplication ( runningApplication: application)
21
21
print ( """
22
22
Title: \( app. title ( ) ?? " <no title> " )
23
+ Bundle Identifier: \( application. bundleIdentifier ?? " <no id> " )
24
+ Activation Policy: \( application. activationPolicy)
23
25
pid: \( app. pid ( ) )
24
26
Manageable: \( application. isManageable)
25
27
You can’t perform that action at this time.
0 commit comments