How can I change the Application Indicator label after delay
self.ind = appindicator.Indicator("new-gmail-indicator", "/usr/share/icons/ubuntu-mono-dark/status/16/ubuntuone-client-error.svg", appindicator.CATEGORY_APPLICATION_STATUS)
self.ind.set_label("SSH")
time.sleep(4)
self.ind.set_label("HSS")
The application runs but I only see the HSS label when running the application. I never see SSH.