I found something amazing in Pomodoro Logger
previously I write a small introduction… inside that, there was a diagram
Update Jan 11th:
so, now, I found how to work with this
you can specify which software is related to your activity (pomodoro) and where you want to focus during defined session.
take a look at this gif
Browsers pass a more complex name to system (for example:
Firefox - Facebook
), so we can use this name structure to specify the tabs…
about Regular Expression (shortly, RegEx) I’ve used:
App: Firefox Title: ^(?!.*Notebook).*$
the
^(?!.
Notebook).
$
dictate that any tab that does NOT contain Notebook
in its name, labeled as “Distracted” (so, only tabs contain Notebook
labeled as focused)! Here I meant “Jupyter Notebook”2nd one:
App: ^(?!.*(Firefox|Obsidian)).*$
Any app with names other than
Obsidian
or Firefox
will be labeled as “Distracted”