I am new to Gtk+ development, and am trying to write an app using PyGObject and Gtk+3.0. When I run my app in Gnome Shell from the command line, however, the application name as it appears in the upper-left hand corner (immediately to the right of the Activities hot corner) is just set to the name of the Python source file that I ran to start the app. Is there any way to set the name to appear in Gnome Shell for my application? I've looked at Gtk.Application, and though it seems to do some of what I want (starting in Gtk+3.3, anyway), I can't seem to figure out how to fix the activity name or the application name.
|
feedback
|
|
gnome-shell tries to match the window to an an app (a But if it fails to find So if you're not installing a .desktop file for it to find the application name from you'll get the default Here is a simple example that will appear as "Hello World". Don't forget to set a window title too!
| |||
|
feedback
|
.desktopfile associated with a program. – Dan D. Feb 17 at 7:11GLib.set_application_name()at the start of your program? – ptomato Feb 21 at 12:48