A radically simple macOS todo app with a CRT terminal aesthetic.
Most todo apps do too much. Today/Tomorrow does three things:
- Today — what you're doing now
- Tomorrow — what you're doing next
- Future — everything else
At midnight, Tomorrow becomes Today. That's it.
- Three sections with color-coded accents (green / cyan / amber)
- CRT terminal aesthetic — dark phosphor background, SF Mono, glowing text
- SwiftData persistence — tasks survive app restarts
- Drag and drop — reorder within sections or move across them
- Midnight rollover — incomplete Tomorrow tasks move to Today automatically
- Keyboard shortcuts —
Cmd+1/2/3to focus sections,Cmd+Nfor new task,Tabto cycle - Collapsible Future section
- Today progress ring — visual completion tracker in the header
| Shortcut | Action |
|---|---|
Cmd+1 |
Focus Today input |
Cmd+2 |
Focus Tomorrow input |
Cmd+3 |
Focus Future input |
Cmd+N |
New task (Today) |
Tab |
Cycle between sections |
Enter |
Add task |
- macOS 14.0+
- Xcode 16+ (to build from source)
Grab the latest .zip from Releases, unzip, and move to /Applications.
git clone https://github.com/daviferreira/TodayTomorrow.git
cd TodayTomorrow
xcodegen generate
xcodebuild -scheme TodayTomorrow -configuration Release build- SwiftUI + SwiftData
- Zero dependencies
- ~600 lines of Swift
MIT
