By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 panorama_panel.py

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