Você pode concatenar as bolhas de notificações relacionadas configurando a sequência de dicas x-canonical-append
to true
.
from gi.repository import Notify
Notify.init('test')
n = Notify.Notification.new('Summary', 'Line 1', 'dialog-information')
n.set_hint_string('x-canonical-append', 'true')
n.show()
n = Notify.Notification.new('Summary', 'Line 2', 'dialog-information')
n.set_hint_string('x-canonical-append', 'true')
n.show()
Para obter mais detalhes, consulte o exemplo append-hint-python.py
python em link
Fonte: link