Re: Title on gnome-shell

2018-02-28 Thread Takao Fujiwara
Thank you for your explanation. I could get the title string in gnome-shell when I added the desktop files and changed GApplication to GtkApplication in my application. Maybe the specification could be defined in freedesktop.org On 02/28/18 02:45, Florian Müllner-san wrote: On Tue, Feb 27

Re: Title on gnome-shell

2018-02-27 Thread Florian Müllner
On Tue, Feb 27, 2018 at 1:59 PM, Takao Fujiwara wrote: > How can I set the title name of GtkWindow on gnome-shell? gtk_window_set_title(), but that's probably not what you mean - there are few places where gnome-shell uses the window title, in general the application name is

Title on gnome-shell

2018-02-27 Thread Takao Fujiwara
How can I set the title name of GtkWindow on gnome-shell? It seems Alt-Tab window and application list on gnome-shell shows the prgname but not application name. int main (int argc, char* argv[]) { GtkWidget *window; g_set_application_name ("Title"); gtk_init (, ); window =