-
Notifications
You must be signed in to change notification settings - Fork 34
Ability to easily track interruptions #58
Description
In the original "The Pomodororo Technique" book ("Objective II: Cut down interruptions" in the 2018 edition of the original Francesco Cirillo book), it is suggested that internal interruptions should be marked with a ' and successfully fended-off external interruptions with -.
I was wondering what the best way to implement this in openpomodoro-cli would be.
I tried doing pomodoro amend --tags=interrupted-myself, but it seems to override all tags, rather than just appending a tag.
I wonder if it would be possible to make a pomodoro amend --add-tag=interrupted or similar.
Calling this multiple times would do the same thing as specifying --tags= on the command-line multiple times, so you might end up with ~/.pomodoro/current saying:
2026-02-27T08:55:53Z description="understand pomodoro-cli" duration=25 tags=interrupted-myself,interrupted-myself,interrupted-by-manager
What do you think? Should I code it up, or is there a better way to represent this?