Reputation: 1622
Apple's own apps such as Reminders show Badge count even if they are not running or after quitting them
Other apps (some even with Helper apps) show badge when they are running, but it disappears as soon as you quit the application
is there a way, user side, or programming side, we can do to always show this badge, even when the app is not running?
I searched a lot in Google, didn't find anything about "always" showing this badge, maybe "badge count" is the wrong keyword
Upvotes: 1
Views: 909
Reputation: 22930
Yes, Create dock Tile Plug-in.
Starting in OS X v10.6, you can customize an application’s Dock tile icon and menu when the application is not running.
When your application needs to customize the Dock tile, it manipulates the NSDockTile
object that was provided to the initial call to the setDockTile:
method.
To dynamically change the application's Dock icon, you can draw a Dock icon using a custom view. See Using a Custom View to Draw a Dock Icon.
To add text to a Dock icon, you can apply a badge label. See Changing the Text of a Badge Label.
Upvotes: 2