diff options
| author | Federico Ceratto <federico.ceratto@gmail.com> | 2015-03-19 10:20:46 +0000 |
|---|---|---|
| committer | Federico Ceratto <federico.ceratto@gmail.com> | 2015-03-19 10:20:46 +0000 |
| commit | 78f09107102d36f3592a3e69409a2b58101e8704 (patch) | |
| tree | 4c8076eeb796f74b604038609781cabf8284a954 | |
| parent | 786470a09ee1d7736c41dcd89db632657f9f87c7 (diff) | |
Pomodoro module: sort configuration parameters
| -rw-r--r-- | py3status/modules/pomodoro.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/py3status/modules/pomodoro.py b/py3status/modules/pomodoro.py index 07e3087..3041c56 100644 --- a/py3status/modules/pomodoro.py +++ b/py3status/modules/pomodoro.py @@ -13,21 +13,21 @@ PROGRESS_BAR_ITEMS = u"▏▎▍▌▋▊▉" class Py3status: """ Configuration parameters: + - display_bar: display time in bars when True, otherwise in seconds - max_breaks: maximum number of breaks + - num_progress_bars: number of progress bars - timer_break: normal break time (seconds) - timer_long_break: long break time (seconds) - timer_pomodoro: pomodoro time (seconds) - - display_bar: display time in bars when True, otherwise in seconds - - num_progress_bars: number of progress bars """ # available configuration parameters + display_bar = False max_breaks = 4 + num_progress_bars = 5 timer_break = 5 * 60 timer_long_break = 15 * 60 timer_pomodoro = 25 * 60 - display_bar = False - num_progress_bars = 5 def __init__(self): self.__setup('stop') |
