Personal TUI productivity tool.
omni-note/
├─ Cargo.toml
└─ src/
├─ main.rs
├─ lib.rs # application state + screen routing
├─ ui/
│ ├─ mod.rs
│ ├─ layout.rs
│ └─ widgets.rs # small reusable UI components
├─ screens/
│ ├─ mod.rs
│ ├─ home.rs
│ ├─ notes.rs # list + view + editor
│ └─ finance.rs # list + add + summary
├─ domain/
│ ├─ mod.rs
│ ├─ note.rs # note structs & domain helpers
│ └─ finance.rs # FinanceEntry, Ledger, etc.
├─ storage/
│ ├─ mod.rs
│ ├─ paths.rs # resolve directories (directories crate)
│ ├─ notes_fs.rs # read/write markdown notes
│ └─ finance_json.rs # read/write ledger.json
├─ config/
│ ├─ mod.rs
│ └─ settings.rs # application settings (TOML)
└─ utils/
├─ mod.rs
└─ time.rs # date helpers & formatting