set task to sleep until a specific time of the day
fincar says:
Is there a way, I could hide a specific task until a certain hour of the day for example 5pm. (I am familiar with the concept of a 'sleeper list', but can not find a way to filter tasks based on the current time, for example I thought of something like [tag:zu5pm AND currenttime: "before 5pm"], where zu5pm is a tag, {sleep until 5 pm} for all the tasks I want to be hidden until that time). But I can not find something like currenttime.
andrewski (Remember The Milk) says:
Hi fincar,
It's not possible to search based on the current time completely in that way, but you could use 'dueBefore:now' or 'dueAfter:now' alongside other searches to hide tasks due later today. For example, the following would only show tasks due today that are not due later today:
due:today AND NOT dueAfter:now
You could add that to a search for a specific tag like 'sleep' so only tagged tasks are hidden.
Hope this helps a bit!
It's not possible to search based on the current time completely in that way, but you could use 'dueBefore:now' or 'dueAfter:now' alongside other searches to hide tasks due later today. For example, the following would only show tasks due today that are not due later today:
due:today AND NOT dueAfter:now
You could add that to a search for a specific tag like 'sleep' so only tagged tasks are hidden.
Hope this helps a bit!
fincar says:
I will try the suggestions and report back. Thank you.