A tiny native macOS app that puts your Obsidian notes folder right in the menu bar. Edit markdown, track time on todos, and get back to work. No friction.
Everything you need, nothing you don't.
Click a file, edit it. Auto-saves with debounce. No fancy rendering — Obsidian's right there if you need it.
Stopwatch tracks time on any todo from any file. Pause, resume, complete. All persisted in SQLite.
Double-tap Fn from anywhere. Cmd+B toggles sidebar. Close the popover, it's gone.
One click opens the current note in Obsidian. Edits sync both ways via file watching.
Build from source. No dependencies, no signing required.
# Clone and build git clone https://github.com/your-username/flowbar.git cd flowbar/Flowbar # Generate Xcode project (needs xcodegen: brew install xcodegen) xcodegen generate # Build xcodebuild -project Flowbar.xcodeproj -scheme Flowbar -configuration Debug build # Run open ~/Library/Developer/Xcode/DerivedData/Flowbar-*/Build/Products/Debug/Flowbar.app
Requires Xcode 16+ and macOS 14+. Or just open Flowbar.xcodeproj in Xcode and hit Run.
Native Swift + SwiftUI + AppKit. No dependencies. 21 source files.
Want to understand the code? Check out the interactive Swift learning guide — every file annotated with Swift concept explanations.