Renaming, readme, licensing

This commit is contained in:
Will Bradley 2013-12-16 02:58:00 -07:00
parent 37a45bddcb
commit 45d6ffa6ac
2 changed files with 10 additions and 5 deletions

5
README.txt Normal file
View File

@ -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

View File

@ -1,10 +1,9 @@
#!/usr/bin/env python #!/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 <neil.patel@canonical.com> # Authors: Will Bradley <bradley.will@gmail.com>
# Jono Bacon <jono@ubuntu.com>
# David Planella <david.planella@ubuntu.com>
# #
# This program is free software: you can redistribute it and/or modify it # This program is free software: you can redistribute it and/or modify it
# under the terms of either or both of the following licenses: # under the terms of either or both of the following licenses:
@ -63,8 +62,9 @@ class HelloWorld:
def __init__(self): def __init__(self):
# register a periodic timer # register a periodic timer
self.counter = 0 self.counter = 0
self.timeout = 1 self.timeout = 10
gobject.timeout_add_seconds(self.timeout, self.ping) gobject.timeout_add_seconds(self.timeout, self.ping)
self.ping()
def menuitem_response(w, buf): def menuitem_response(w, buf):