-
-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request: seconds support for scheduling #408
Comments
Yes, I'm aware of using 1s or 1ms to update the item every second/ms, but I haven't figured out a way to only update when needed. |
Ah, I see. No, it is not possible with the current feature set. Let me think about it. |
Please let me know if this becomes possible. Thank you for your efforts! |
I'd also like to get support for seconds, maybe just add another digit to the cron syntax and support up to 6 groups (in which case the first would be the seconds)? |
For many timer/countdown apps, it is necessary to update the menu bar text every second. Unfortunately, cron syntax only supports down to minutes (due to only checking for cron tasks every minute on Linux).
However, this app is able to update every second. I am suggesting an expansion to the scheduling functionality for seconds:
Existing:
(0-59) (0-23) (1-31) (1-12) (0-6) (minutes, hours, days, month, weekday)
Suggested:
(0-59) (0-59) (0-23) (1-31) (1-12) (0-6) (seconds, minutes, hours, days, month, weekday)
The text was updated successfully, but these errors were encountered: