diff options
| -rw-r--r-- | py3status/modules/online_status.py | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/py3status/modules/online_status.py b/py3status/modules/online_status.py new file mode 100644 index 0000000..432ffb0 --- /dev/null +++ b/py3status/modules/online_status.py @@ -0,0 +1,70 @@ +# -*- coding: utf-8 -*- +""" +Module displaying if a connection to the internet is established. + +@author obb +""" + +from time import time +try: + # python3 + from urllib.request import urlopen +except: + from urllib2 import urlopen + + +class Py3status: + """ + Configuration parameters: + - cache_timeout : how often to run the check + - format_offline : what to display when offline + - format_online : what to display when online + - timeout : how long before deciding we're offline + - url : connect to this url to check the connection status + """ + # available configuration parameters + cache_timeout = 10 + format_offline = '■' + format_online = '●' + timeout = 2 + url = 'http://www.google.com' + + def _connection_present(self): + try: + urlopen(self.url, timeout=self.timeout) + except: + return False + else: + return True + + def online_status(self, i3s_output_list, i3s_config): + self.offline_color = i3s_config['color_bad'] + self.online_color = i3s_config['color_good'] + + response = { + 'cached_until': time() + self.cache_timeout + } + + connected = self._connection_present() + if connected: + response['full_text'] = self.format_online + response['color'] = self.online_color + else: + response['full_text'] = self.format_offline + response['color'] = self.offline_color + + return response + +if __name__ == "__main__": + """ + Test this module by calling it directly. + """ + from time import sleep + x = Py3status() + config = { + 'color_good': '#00FF00', + 'color_bad': '#FF0000', + } + while True: + print(x.online_status([], config)) + sleep(1) |
