notify_dbus replace previous notification with the same title#10
Open
drc0 wants to merge 1 commit intoguyzmo:masterfrom
Open
notify_dbus replace previous notification with the same title#10drc0 wants to merge 1 commit intoguyzmo:masterfrom
drc0 wants to merge 1 commit intoguyzmo:masterfrom
Conversation
with the linux dbus facility, notifications from the same person/type gets memorized and they do not stack, instead they replace the last message in the notification list. In particular, notifications with the same title do not stack on each other but are replaced.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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!