panorama_panel.py
Python script, ASCII text executable
1import gi 2gi.require_version("Gtk", "4.0") 3 4from gi.repository import Gtk 5 6 7class Applet(Gtk.Box): 8name = "Generic applet" 9description = "" 10 11def __init__(self, orientation=Gtk.Orientation.HORIZONTAL, config=None): 12super().__init__(orientation=orientation) 13 14def get_config(self): 15return {} 16