up vote 4 down vote favorite
share [g+] share [fb]

In Gnome, whenever an application is started, the mouse cursor changes from normal to an activity indicator (a spinning wheel type thing on Ubuntu). Is there any way to inform Gnome (through some system call) when the application has finished launching so that the mouse cursor returns to normal without waiting for the usual timeout of 30 seconds to occur.

I have a program in Pythong using GTK+ that is showing the icon even after launching, so what system call do I make?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Normally it happens automatically when you open the application's window.

It may be that the application's launcher just calls an already running instance, in that case it won't be automatically detected. The call you need then is this:

import gtk
gtk.gdk.notify_startup_complete()
link|improve this answer
feedback

This normally happens automatically when calling the gtk.main() function

link|improve this answer
feedback

Your application can opt out of startup notification by adding

StartupNotify=false

to your application's .desktop file.

Of course, it is friendlier to leave it enabled and participate in startup notification.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.