I'm a huge fan of the Forest app, which by the looks of my tech-ish audience, most of you are already familiar with. But for those who don't know, it is essentially a pomodoro timer that rewards each interval of undeterred focus with a tree. This tree is planted both in a virtual forest and in real life. A user can accumulate these trees overtime. Now, if 45 minutes of focus time is cut off at 30 minutes, a dead tree is planted in the forest instead. Of course, this is aesthetically undesirable.
I made it my mission to create something similar to Forest in Notion, at least in concept. Essentially, the user is faced with a wall of tagged tasks with "check" and "partially" checkboxes. When these boxes are ticked, the following rows of roses may appear.
"๐น๐น๐น๐น๐น๐น๐น๐น๐น๐น๐น๐น" โ Completed Task
"๐ท๐ท๐ท๐ท๐ท๐ท๐ท๐ท๐ท๐ท๐ท๐ท" โ Partially Completed Task
"๐ฅ๐ฅ๐ฅ๐ฅ๐ฅ๐ฅ๐ฅ๐ฅ๐ฅ๐ฅ๐ฅ๐ฅ" โ Uncompleted Task
The default property tags
These tags aren't necessary, however, I've applied the Reoccurring tag into the Today section filter, assuming reoccurring tasks are required everyday.
Reoccurring Dailies
High Priority
Medium Priority
Personal
How to add another tag and garden row:
Add new tag to Tag property :: Add new formula property :: Copy and Paste following formula โคต
if(prop("Tag") == "High Priority" and (prop("Partially") and prop("Check")) == true, "Select Only One", if(prop("Tag") == "High Priority" and prop("Partially") == true, "๐ท๐ท๐ท๐ท๐ท๐ท๐ท๐ท๐ท๐ท๐ท๐ท", if(prop("Tag") == "High Priority" and prop("Check") == true, "๐น๐น๐น๐น๐น๐น๐น๐น๐น๐น๐น๐น", if(prop("Tag") == "High Priority" and (prop("Partially") and prop("Check")) == false, "๐ฅ๐ฅ๐ฅ๐ฅ๐ฅ๐ฅ๐ฅ๐ฅ๐ฅ๐ฅ๐ฅ๐ฅ", ""))))
:: in every instance, replace "High Priority" with new tag label :: โ