notify_dbus replace previous notification with the same title #10
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
On linux, when using the dbus notification library, is possible to override the last notification in order to not have many notifications from the same user,
I have a propose that looks at the current summary/title of the notifications, and following notifications with the same title are overridden, for example when receiving 3 notifications like:
PM from me: "hello"
PM from me: "world"
PM from you: "!"
only two of them are displayed in the notification area, in particular those are shown:
PM from me: "world"
PM from you: "!"
this avoids notifications floods, what do you think?
ps (this pull request should be reviewed also with #9 because there the order of the title and body is inverted, line 116 )
thanks!