Originally posted on tinyforge.store . When I started building Kurippa — a keyboard-first clipboard manager for macOS — I ran into something that bothered me more than any bug. The app worked. The UI looked exactly how I wanted. But every time I summoned it with a hotkey, there was a noticeable pause before the window appeared. Not a crash. Not an error. Just... a moment of nothing. For a clipboard manager, that pause kills the whole point. You're mid-flow, you hit the shortcut, and instead of instant access you're waiting. The friction is small but constant. This post is about understanding why that happens, what the alternative looks like, and how I solved it without abandoning the web UI stack I'd already built. 1. The Tradeoff: Web UI vs Native UI Tauri lets you build desktop apps with a web frontend — HTML, CSS, React, whatever you like — rendered inside a native WebKit webview. The upside is enormous: you get the full expressiveness of the web platform.…