diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 19 |
1 files changed, 12 insertions, 7 deletions
@@ -98,6 +98,10 @@ Otherwise, do a hard reset (running this command twice in a row would always do hard reset). This command is useful for polybar's click response, as we don't have much room for multiple commands. +#### polydoro notify + +Toggle desktop notifications. + ## Configuration Config is passed as environment variables. @@ -108,17 +112,18 @@ In the polydoro daemon we have the following options: **Note: All duration values are in seconds.** -| Variable | Description | Default Value | -| --------------------- | ------------------------------------- | ----------------- | -| `WORK_DURATION` | Duration of the work timer | 1500 (25 minutes) | -| `BREAK_DURATION` | Duration of the short break timer | 300 (5 minutes) | -| `LONG_BREAK_DURATION` | Duration of the long break timer | 1200 (20 minutes) | -| `LONG_BREAK_INTERVAL` | Number of work cycles till long break | 4 | +| Variable | Description | Default Value | +| --------------------- | ------------------------------------------------------------- | ----------------- | +| `WORK_DURATION` | Duration of the work timer | 1500 (25 minutes) | +| `BREAK_DURATION` | Duration of the short break timer | 300 (5 minutes) | +| `LONG_BREAK_DURATION` | Duration of the long break timer | 1200 (20 minutes) | +| `LONG_BREAK_INTERVAL` | Number of work cycles till long break | 4 | +| `NOTIFY` | If set to `true` to start up with the notifications turned on | `false` | Example: ```fish -WORK_DURATION=1200 polydoro -d +WORK_DURATION=1200 NOTIFY=true polydoro -d ``` ### Listener config |