You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
523 B
22 lines
523 B
# -*- coding: utf-8 -*-
|
|
"""
|
|
Notification plugin using notify2
|
|
"""
|
|
|
|
import gi
|
|
gi.require_version('Notify', '0.7')
|
|
from gi.repository import Notify
|
|
|
|
Notify.init('pybitmessage')
|
|
|
|
|
|
def connect_plugin(title, subtitle, category, _, icon):
|
|
"""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()
|
|
|
|
|
|
connect_plugin.notification = Notify.Notification.new("Init", "Init")
|