rhythmbox_webstatus/webstatus.py
Valentin Popov 6c64103960
chore: Initial Rhythmbox plugin
Signed-off-by: Valentin Popov <valentin@popov.link>
2022-10-19 16:39:25 +04:00

16 lines
422 B
Python

from gi.repository import GObject, Peas, RB
class WebStatusPlugin(GObject.Object, Peas.Activatable):
__gtype_name = 'WebStatusPlugin'
object = GObject.property(type=GObject.Object)
def __init__(self):
super(WebStatusPlugin, self).__init__()
def do_activate(self):
print("activating sample python plugin")
def do_deactivate(self):
print("deactivating sample python plugin")