From 62192a9724ac312183b84cc920a0d6e0d6d1646c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= Date: Sat, 4 Apr 2026 18:26:56 +0200 Subject: [PATCH] Set prgname to application ID Using the application ID ensures that Wayland compositors could match the window with the application and show the appropriate icon for them. --- usr/lib/bulky/bulky.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usr/lib/bulky/bulky.py b/usr/lib/bulky/bulky.py index 567cd13..88c6b40 100755 --- a/usr/lib/bulky/bulky.py +++ b/usr/lib/bulky/bulky.py @@ -188,6 +188,8 @@ def __init__(self, application_id, flags): Gtk.Application.__init__(self, application_id=application_id, flags=flags) self.connect("activate", self.activate) + GLib.set_prgname("bulky") + def activate(self, application): windows = self.get_windows() if (len(windows) > 0):