From eca7a8dba9b1d3d8b90fffb014ea19d316b2a524 Mon Sep 17 00:00:00 2001 From: Ultrabug Date: Mon, 12 Jan 2015 09:40:01 +0100 Subject: add more user configurable params to the pomodoro module wrt issue #53 thx to @promaq --- py3status/modules/pomodoro.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/py3status/modules/pomodoro.py b/py3status/modules/pomodoro.py index 3fb1f58..39279c1 100644 --- a/py3status/modules/pomodoro.py +++ b/py3status/modules/pomodoro.py @@ -11,14 +11,14 @@ class Py3status: # available configuration parameters max_breaks = 4 + timer_break = 5 * 60 + timer_long_break = 15 * 60 + timer_pomodoro = 25 * 60 def __init__(self): self.__setup('stop') self.alert = False self.run = False - self.timer_pomodoro = 25 * 60 - self.timer_break = 5 * 60 - self.timer_long_break = 15 * 60 def on_click(self, i3s_output_list, i3s_config, event): """ -- cgit v1.3