PyBitmessage/src/plugins/notification_notify2.py

22 lines
523 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2019-09-23 10:38:00 +00:00
"""
2019-12-21 07:14:33 +00:00
Notification plugin using notify2
2019-09-23 10:38:00 +00:00
"""
import gi
gi.require_version('Notify', '0.7')
from gi.repository import Notify
Notify.init('pybitmessage')
2019-09-23 10:38:00 +00:00
2019-12-21 07:14:33 +00:00
def connect_plugin(title, subtitle, category, _, icon):
2019-09-23 10:38:00 +00:00
"""Plugin for notify2"""
if not icon:
icon = 'mail-message-new' if category == 2 else 'pybitmessage'
connect_plugin.notification.update(title, subtitle, icon)
connect_plugin.notification.show()
2019-09-23 10:38:00 +00:00
connect_plugin.notification = Notify.Notification.new("Init", "Init")