1
0
mirror of https://github.com/pcvolkmer/checkbar.git synced 2025-07-02 14:22:54 +00:00

Use numbers or parseable string for config property interval

This commit is contained in:
2022-12-31 00:44:35 +01:00
parent 813ebc7a24
commit 5cc33c983e
3 changed files with 116 additions and 53 deletions

View File

@ -35,7 +35,12 @@ The value for `interval` can be set by using plain seconds or using units of `h`
default to 60 seconds.
----
# Update interval using value with units. Default value if not set is 60 sec.
# Update interval using seconds as number.
interval = 60
# or ...
# Update interval using value with units.
interval = "2m 30s"
----