Why I Built Ortu — and Why It Should Be Your Default Clipboard Manager
The founder story behind Ortu, an open-source, local-first clipboard manager built with Rust and Tauri — and an honest comparison with Paste, Maccy, Raycast, Ditto, and CopyQ.
Share
Why I Built Ortu — and Why It Should Be Your Default Clipboard Manager
TL;DR: Ortu is a free, open-source clipboard manager for macOS, Windows, and Linux. It remembers everything you copy — text, images, files — organizes it automatically, encrypts your secrets, and never sends a single byte to the cloud. Built with Rust and Tauri, it's tiny, fast, and MIT-licensed. Grab it on GitHub.
The problem nobody talks about
Think about how many times you press Ctrl+C / ⌘C in a day.
If you're a developer, it's hundreds. API keys, error messages, snippets from Stack Overflow, terminal commands, JSON payloads, URLs, file paths. If you're a writer, designer, support engineer, or student — same story, different content.
And yet the clipboard, the tool we lean on more than almost anything else, has a memory of exactly one item. Copy something new, and the old thing is gone. Forever.
I lost count of how many times I copied a long command, got distracted, copied something else, and had to dig through my shell history or re-open a closed tab to find it again. One day I copied a database connection string, then copied a "thanks!" for a Slack message, and spent ten minutes reconstructing that string from three different config files.
That was the day I started building Ortu.
The founder story: scratching my own itch
I copy-paste for a living. Most of us do — we just don't say it out loud.
I tried the existing tools. Some were macOS-only. Some wanted a subscription for what is essentially a searchable list. Some were free but felt like they were designed in 2009. And several of the polished ones synced my clipboard — the place where passwords, tokens, and private messages inevitably land — to someone else's server.
That last part bothered me the most. Your clipboard is arguably the most sensitive data stream on your machine. Everything passes through it: 2FA codes, API keys, salary figures, medical info, that message you drafted and never sent. A clipboard manager sees all of it. I didn't want that data leaving my laptop, and I didn't want to "trust a privacy policy" — I wanted it to be architecturally impossible for the data to leave.
So I set three non-negotiable rules for Ortu:
- Local-first, always. No accounts, no cloud, no telemetry. Not "off by default" — not there at all.
- Fast and lightweight. No Electron, no bundled Chromium eating 400 MB of RAM to show a list of text.
- Free and open source. MIT license. If it touches your clipboard, you should be able to read the code.
What Ortu actually does
Ortu isn't just "clipboard history." Here's what makes it different in daily use:
📋 Remembers everything, in every format
Text, images, and files — all captured with thumbnail previews. Copy a screenshot, a folder, and a code block; all three are there when you need them.
🧠 Smart auto-organization
Ortu classifies clips as they arrive: URLs, code, JSON, shell commands, file paths, and secrets are automatically grouped using rule-based classification. Your history doesn't turn into a junk drawer — it stays a library.
🥞 The Paste Stack (my favorite feature)
Every clipboard manager lets you paste the last thing. Ortu lets you queue multiple clips and paste them one-by-one, in order, into any app. Filling out a form with ten fields from a spreadsheet? Copy all ten, then paste-paste-paste down the form. It feels like a superpower the first time you use it.
🔐 Secrets are treated like secrets
This is where most clipboard managers scare me. Ortu detects sensitive content — keys, tokens, credentials — masks it visually, and encrypts it at rest with AES-256-GCM. Secrets are only revealed when you explicitly ask. Your clipboard history stops being a security liability.
🔎 Search that actually scales
Full-text search powered by SQLite FTS5 with fuzzy ranking. It stays instant across tens of thousands of items. That command you copied three weeks ago? Type four letters, it's there.
⌨️ Keyboard-first, everywhere
Press ⌥V (or Alt+V on Windows/Linux) and the popup appears over whatever you're doing. Every major action has a rebindable global shortcut. Your hands never leave the keyboard.
🪶 Genuinely lightweight
Ortu is built with Tauri v2 and Rust, with a SvelteKit UI. It ships as a small native binary using your OS's webview — no bundled Chromium. Idle memory usage is a rounding error compared to Electron-based alternatives. It's the kind of app you install and forget is running.
Plus: reusable snippets, text transformations, pinning, flexible retention policies, JSON backup/restore, and auto-updates via GitHub Releases.
How Ortu compares to the big names
I want to be fair here — these are good tools, and some pioneered the category. But here's the honest landscape:
| Ortu | Paste | Maccy | Raycast | Ditto | CopyQ | |
|---|---|---|---|---|---|---|
| Price | Free, forever | ~$30/year subscription | Free (small App Store fee) | Free tier / Pro sub | Free | Free |
| Open source | ✅ MIT | ❌ | ✅ | ❌ | ✅ | ✅ |
| Platforms | macOS, Windows, Linux | macOS/iOS only | macOS only | macOS, Windows | Windows only | macOS, Windows, Linux |
| Cloud sync / account | ❌ None, by design | ☁️ iCloud sync | ❌ | ☁️ Account-based | Optional LAN sync | ❌ |
| Secret detection + encryption at rest | ✅ AES-256-GCM | ❌ | ❌ | ❌ | Partial | ❌ |
| Paste stack (sequential pasting) | ✅ | ❌ | ❌ | ❌ | ✅ (limited) | Scriptable |
| Auto-categorization | ✅ URLs, code, JSON, shell, secrets, files | Manual pinboards | ❌ | ❌ | ❌ | Manual tabs |
| Full-text search at scale | ✅ FTS5 + fuzzy | ✅ | Basic | ✅ | ✅ | ✅ |
| Images & files | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| Footprint | Native (Tauri/Rust) | Native | Native, minimal | Native | Native, dated UI | Qt, dated UI |
And the built-in options? Windows Clipboard History (Win+V) caps out at 25 items and pushes you toward cloud sync. macOS has nothing at all.
Where each one stands
- Paste is beautiful — genuinely the best-looking app in the category. But it's macOS-only, subscription-priced, and syncs your clipboard through iCloud. You're paying yearly for polish and accepting cloud exposure.
- Maccy is a fantastic minimal choice for Mac users, and it's open source. But it's only text-focused simplicity — no paste stack, no secret encryption, no smart grouping, and no Windows or Linux.
- Raycast is a great launcher whose clipboard history is a side feature. If you live in Raycast, it's convenient — but it's not a clipboard manager, it's a clipboard viewer, and it's tied to an account ecosystem.
- Ditto has served Windows users faithfully for two decades. It's capable, but Windows-only and showing its age.
- CopyQ is the power-user's Swiss Army knife — cross-platform and endlessly scriptable. But the learning curve is steep, the UI feels like a developer tool from another era, and features like secret encryption require you to build them yourself.
Why Ortu should be your default
Here's the pitch in one paragraph: Ortu is the only clipboard manager that is simultaneously cross-platform, open source, free, secret-aware with real encryption, and local-only by architecture — while still shipping modern features (paste stack, auto-categorization, fuzzy FTS search) in a native-speed binary. With every other tool, you pick your compromise: pay a subscription, give up your platform, give up privacy, or give up polish. With Ortu, you don't pick.
Use the same tool, with the same shortcuts, on your Mac at work, your Windows gaming rig, and your Linux server workstation. Your muscle memory transfers. Your data never does.
Under the hood, for the curious
A few technical choices I'm proud of:
- Tauri v2 + Rust for the core: memory-safe, fast, and tiny. The clipboard watcher, classifier, and crypto all live in Rust.
- SvelteKit + Tailwind for the UI: reactive and lean, rendered in the system webview.
- SQLite in WAL mode with content-addressed blob storage: fast writes, deduplicated images/files, and instant FTS5 search.
- AES-256-GCM for anything classified as a secret — encrypted at rest, decrypted only on explicit reveal.
The entire codebase is on GitHub under MIT. Read it, audit it, fork it, break it, send a PR.
We launched on Product Hunt 🚀
Ortu is live on Product Hunt with a 5.0★ rating, and the early feedback has centered on exactly what I hoped: the privacy-first, local-only model, the search, and the automatic categorization. If Ortu sounds like your kind of tool, an upvote or a review genuinely helps an indie open-source project get discovered.
Get Ortu (it takes 60 seconds)
- Download for macOS, Windows, or Linux —
.dmg,.msi/.exe,.AppImage, or.deb. - Press ⌥V / Alt+V. That's it. Ortu starts remembering.
- Copy something sensitive and watch it get masked and encrypted automatically.
- 🌐 Website: ortu.abhijithpsubash.com
- ⭐ GitHub: github.com/abhijith-p-subash/ortu — a star helps more than you'd think
- 🚀 Product Hunt: producthunt.com/products/ortu
Your clipboard has been forgetting things your whole life. Give it a memory.
Ortu is free, open source (MIT), and collects zero data. Built by Abhijith P Subash — a developer who got tired of losing copied text, and decided the fix should belong to everyone.