From 192777a07f063295ab9d89d911b0da2ba7896c6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= Date: Sat, 4 Apr 2026 18:12:04 +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. --- src/warpinator.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/warpinator.py b/src/warpinator.py index 46b3d343..54666b06 100644 --- a/src/warpinator.py +++ b/src/warpinator.py @@ -1424,6 +1424,8 @@ def do_startup(self): Gtk.Application.do_startup(self) logging.info("Initializing Warpinator") + GLib.set_prgname("org.x.Warpinator") + prefs.prefs_settings.connect("changed::" + prefs.TRAY_ICON_KEY, self.on_prefs_changed) vt = GLib.VariantType.new("s")