diff options
Diffstat (limited to 'py3status/modules/online_status.py')
| -rw-r--r-- | py3status/modules/online_status.py | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/py3status/modules/online_status.py b/py3status/modules/online_status.py index 8176d21..7b6d7d6 100644 --- a/py3status/modules/online_status.py +++ b/py3status/modules/online_status.py @@ -2,6 +2,13 @@ """ Display if a connection to the internet is established. +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 + @author obb """ @@ -15,12 +22,6 @@ except: 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 |
