diff options
| author | rixx <rixx-git@cutebit.de> | 2015-03-19 15:25:02 +0100 |
|---|---|---|
| committer | rixx <rixx-git@cutebit.de> | 2015-03-19 15:25:02 +0100 |
| commit | 74c855d59f8aacc0b67261d2e5b7ac7402877360 (patch) | |
| tree | a55c28931891c5d7c021d22f62005d9ddfdca841 | |
| parent | 64a78c990dd072ba3d70e182c4f16e55c9e9ef3b (diff) | |
added click-documentation
| -rw-r--r-- | py3status/modules/pomodoro.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/py3status/modules/pomodoro.py b/py3status/modules/pomodoro.py index bf86e96..7fcecba 100644 --- a/py3status/modules/pomodoro.py +++ b/py3status/modules/pomodoro.py @@ -22,7 +22,12 @@ class Py3status: def on_click(self, i3s_output_list, i3s_config, event): """ - Handles click events + Handles click events: + - left click starts an inactive counter and pauses a running + Pomodoro + - middle click resets everything + - right click starts (and ends, if needed) a break + """ if event['button'] == 1: if self.status == 'stop': |
