Back to blog

How to Put a Todo on Your iPhone Lock Screen

A practical walkthrough for surfacing the next task on your iPhone without creating a noisy setup.

1 min read

Putting a todo on your iPhone lock screen is less about adding more information and more about choosing the one thing that deserves a place there.

Start with a single task

The lock screen works best when it shows one priority, not your entire list. Before setting anything up, decide which task should stay visible through the day.

Choose a source of truth

For most people, Apple Reminders is the cleanest base because it already fits into iOS habits and Shortcuts.

Build a low-noise workflow

  1. Keep a short list for today’s focus.
  2. Promote one task into the lock screen state.
  3. Refresh it only when the priority changes.

Example shortcut logic

const focusList = reminders.filter((item) => item.list === "Today");
const nextTask = focusList[0];

updateLockScreen({
  title: nextTask?.title ?? "Inbox zero is enough for today"
});

What to avoid

  • showing more than one or two tasks
  • mixing urgent reminders with passive notes
  • updating the lock screen too often

The calmer the surface feels, the more likely you are to trust it.

Related articles