When I upgraded to Ubuntu 11.10 I wanted date and time on my indicator panel, without the Evolution resource hogs that are dependencies of the standard Ubuntu 11.10 clock indicator. Since the Evolution calendar has (had?) a major memory leak in 11.04 when used with Google Calendars I stopped using Evolution and uninstalled it. Unfortunately I found the clock was impossible to use without the leaky Evo data server. And worse still, I was unable to find any clock indicator that was compatible with the new appindicator standard. So I had no way of knowing how late I was working beyond how dark it was outside.
So here is my first attempt at an appindicator (or even writing Python code). It is inspired by Mark Bokil and his "show desktop indicator' (via http://www.webupd8.org/2011/10/show-desktop-indicator-for-ubuntu-quick.html#more )
You'll need to install wmctrl first, then run the display-indicator.py file below (which I chmod'ed and added to started applications)
sudo apt-get install wmctrl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Unity indicator for evolution-less clock and date display | |
# author: phil ayres | |
# 24 Oct 2011 | |
import gobject | |
import gtk | |
import appindicator | |
import os, sys | |
import time | |
from time import gmtime, strftime | |
if __name__ == "__main__": | |
#def on_left_click(widget,data=None): | |
# Placeholder for later | |
def on_timer(args=None): | |
ind.set_label(strftime("%H:%M",time.localtime())) | |
item.set_label(strftime("%a, %d %b %Y - %H:%M",time.localtime())) | |
return True | |
ind = appindicator.Indicator ("simple-clock-client", "clock", appindicator.CATEGORY_APPLICATION_STATUS) | |
ind.set_status (appindicator.STATUS_ACTIVE) | |
ind.set_label(strftime("%H:%M",time.localtime())); | |
menu = gtk.Menu() | |
item = gtk.MenuItem(strftime("%a, %d %b %Y",time.localtime())) | |
#item.connect("activate", on_left_click) | |
item.show() | |
menu.append(item) | |
ind.set_menu(menu) | |
gtk.timeout_add(1000, on_timer) | |
gtk.main() |