From 45d6ffa6accc7ba0e032738053ee839bed7b611f Mon Sep 17 00:00:00 2001 From: Will Bradley Date: Mon, 16 Dec 2013 02:58:00 -0700 Subject: [PATCH] Renaming, readme, licensing --- README.txt | 5 +++++ appindicator.py => pinger.py | 10 +++++----- 2 files changed, 10 insertions(+), 5 deletions(-) create mode 100644 README.txt rename appindicator.py => pinger.py (92%) diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..9db236d --- /dev/null +++ b/README.txt @@ -0,0 +1,5 @@ +Pinger.py -- A ping tool that sits in your system tray + ++ Saves your sanity when the wifi sucks ++ Doesn't clutter up your screen with ping windows + diff --git a/appindicator.py b/pinger.py similarity index 92% rename from appindicator.py rename to pinger.py index b60512a..749e17d 100644 --- a/appindicator.py +++ b/pinger.py @@ -1,10 +1,9 @@ #!/usr/bin/env python # -# Copyright 2009-2012 Canonical Ltd. +# Pinger.py -- A ping tool that sits in your system tray +# Copyright 2013 Will Bradley # -# Authors: Neil Jagdish Patel -# Jono Bacon -# David Planella +# Authors: Will Bradley # # This program is free software: you can redistribute it and/or modify it # under the terms of either or both of the following licenses: @@ -63,8 +62,9 @@ class HelloWorld: def __init__(self): # register a periodic timer self.counter = 0 - self.timeout = 1 + self.timeout = 10 gobject.timeout_add_seconds(self.timeout, self.ping) + self.ping() def menuitem_response(w, buf):