roundabout,
created on Tuesday, 5 August 2025, 19:37:50 (1754422670),
received on Tuesday, 5 August 2025, 19:37:54 (1754422674)
Author identity: Vlad <vlad.muntoiu@gmail.com>
33e08b1dd668f009f8ebe9f3c316ebc00ab4b0a4
applets/wf-window-list/__init__.py
@@ -239,7 +239,7 @@ class WFWindowList(panorama_panel.Applet):
config = {} self.set_homogeneous(True) self.window_button_options = WindowButtonOptions(240)self.window_button_options = WindowButtonOptions(config.get("max_button_width", 256))self.toplevel_buttons: dict[ZwlrForeignToplevelHandleV1, WindowButton] = {} # This button doesn't belong to any window but is used for the button group and to be
@@ -492,4 +492,7 @@ class WFWindowList(panorama_panel.Applet):
child = child.get_next_sibling() def get_config(self): return {}return {"max_button_width": self.window_button_options.max_width} def output_changed(self): self.get_wl_resources()
main.py
@@ -154,6 +154,13 @@ class PanelConfigurator(Gtk.Frame):
Gtk4LayerShell.set_monitor(self.panel, monitor) self.panel.show() # Make the applets aware of the changed monitor for area in (self.panel.left_area, self.panel.centre_area, self.panel.right_area): applet = area.get_first_child() while applet: applet.output_changed() applet = applet.get_next_sibling() PANEL_POSITIONS_HUMAN = { Gtk.PositionType.TOP: "top",
shared/panorama_panel.py
@@ -51,6 +51,9 @@ class Applet(Gtk.Box):
def restore_drag(self): self.remove_controller(self.drag_source) def output_changed(self): return @classmethod def print_log(cls, *args, **kwargs): print(f"{cls.__name__}:", *args, **kwargs)