How to merge notifications with a common title in pynotify?
How can I 开发者_如何学JAVAtell a pynotify.Notification object to merge with another that has the same title?
(Per discussion:)
Setting the append hint on your notifications (set_hint_string('append', '')
) tells the notification daemon that it should merge notifications from your app when they have the same titles.
精彩评论