A 2-Notification Routine That Keeps Your To-Do List Alive
Everyone has installed a to-do app, used it enthusiastically for a week, and then found it three months later with 40 overdue items. The list didn't fail — the loop did. Nothing pulled you back at the right moment. The fix is not more features; it's two well-timed notifications and a widget. Here's the routine and how to set it up.
The routine
- Morning summary (8:00): one notification that says how many things are on today and what the first one is. "3 things today · first: Dentist". You read it, you know the shape of the day, no app opened.
- Widget during the day: today's list on the home screen with a check circle per item. You complete things where you see them.
- Evening check (21:00): "2 left today — a quick check before bed?" Either you finish them, or you move them to tomorrow. Nothing rolls over silently into a pile.
That's it. Two notifications, one widget. The trick is that both notifications are conditional: if there's nothing on the list, the morning message is "Nothing planned today. Enjoy it," and the evening one is "A quiet day. Anything for tomorrow?" — an invitation, not a nag. Apps that fire the same reminder every day regardless get muted within a week.
Why it works
- The morning summary answers the only question you have at 8am: how bad is today? Knowing "3 things, first is at 2pm" removes the dread of opening the app.
- The widget removes the app from the loop entirely for the most common action (done).
- The evening check creates a hard edge. Tasks that can't survive the question "tonight or tomorrow?" get deleted, which is the point.
Making the notifications actually arrive on Android
The most common complaint about reminder apps is "I set it up and it never came" or "nothing all day, then five at once when I opened the app". That's Android's battery optimization deferring background work — apps that schedule reminders through periodic background jobs are exactly the ones this breaks.
- Prefer apps that use exact-ish alarms (AlarmManager) for reminders rather than background jobs. Dayo schedules each reminder as an alarm and re-arms the next one when it fires, so nothing piles up.
- On Samsung / Xiaomi / Huawei: Settings → Apps → the app → Battery → set to Unrestricted (or turn off "Put app to sleep").
- Make sure the app's notification channel isn't silenced: Settings → Apps → Notifications.
- If reminders should never arrive at night, use the app's do-not-disturb window instead of muting the whole app.
Setting it up in Dayo
- Settings → Notifications. Morning summary and Evening nudge are on by default at 08:00 and 21:00; tap the time to change it.
- Choose sound and vibration, and set a do-not-disturb window (e.g. 23:00–07:00) if you want a hard quiet period.
- Add the Today widget (Settings → Widget & data → Today list). That's your daytime loop.
- Optional: for specific tasks, add an alarm chip when you create them — at time, 10/30 minutes before, or the morning of.
One rule for the evening check
When the evening nudge arrives, every open item gets one of three fates: done now, moved to a specific day, or deleted. "Someday" is allowed but only for things with no date. If you do this every night for a week, the list stays short enough that the morning summary is never scary — and that's what keeps you coming back.