Skip to content

Quick Start

After installing, simply run:

Terminal window
mach

This opens the weekly planner view. Your cursor starts on today’s column.

  • h/l — Move left/right between days
  • j/k — Move up/down within a column
  • [/] — Jump to previous/next week
  1. Press a to open the add popup
  2. Type your task
  3. Press Enter to add it

The todo appears at the top of the focused column.

  1. Navigate to a todo with j/k
  2. Press Enter to select it (you’ll see the indicator)
  3. Use h/l to move it between days
  4. Use j/k to reorder within the column
  5. Press Enter again to drop it

Press x on any todo to toggle its completion status. Completed todos sink to the bottom of the column.

Press b to open the backlog — a fullscreen 4-column view for “someday” items. Great for ideas you want to capture but not schedule yet.

  • t — Move a backlog item to today
  • T — Move to tomorrow
  • b or Esc — Return to weekly view

You can also manage todos from the command line:

Terminal window
# Add a todo for today
mach add "Buy groceries"
# Add to backlog
mach add --some-day "Learn piano"
# List today's tasks
mach list
# List backlog items
mach list --some-day
# List completed items
mach list --done

Press ? anytime in the TUI to see available keyboard shortcuts for the current view.