From 59251f2a60609d0e172964173019fbc3191a152a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= Date: Thu, 2 Jul 2026 11:10:23 +0200 Subject: [PATCH] Set prgname to match with the executable This ensures that application launchers could match the window with the .desktop file and show the appropriate icon for them. --- usr/lib/hypnotix/hypnotix.py | 1 + 1 file changed, 1 insertion(+) diff --git a/usr/lib/hypnotix/hypnotix.py b/usr/lib/hypnotix/hypnotix.py index a6be99f..31a831a 100755 --- a/usr/lib/hypnotix/hypnotix.py +++ b/usr/lib/hypnotix/hypnotix.py @@ -104,6 +104,7 @@ class MyApplication(Gtk.Application): # Main initialization routine def __init__(self, application_id, flags): Gtk.Application.__init__(self, application_id=application_id, flags=flags) + GLib.set_prgname("hypnotix") self.connect("activate", self.activate) def activate(self, application):