PasteMind is a local-first clipboard manager for macOS 13+ (Apple Silicon).
- Capture text and image clipboard items with low overhead
- Keep all data on-device — no cloud sync, no remote upload
- Provide fast menu bar access and one-step auto paste
- Menu bar app with customizable summon shortcut (default:
Cmd+Shift+V) - Clipboard history with search (text + image)
- Local SQLite metadata + local file storage for images
- History cap (default 500), image size cap (default 10MB)
- Duplicate suppression with content hash
- Sensitive source exclusion (password manager bundle IDs)
- Auto paste with graceful permission fallback
- Bilingual UI switch (
中文 / English) in-app - Click text/image preview to paste immediately
- Hotkey recording supports
F1toF24(standalone or with modifiers)
┌──────────────────────────────────────────┐
│ SvelteKit UI │
│ history list, search, permissions hint │
└───────────────▲───────────────┬──────────┘
│ invoke/events │
┌───────────────┴───────────────▼──────────┐
│ Tauri Commands │
│ get_history/select_entry/update_settings │
└───────────────▲───────────────┬──────────┘
│ │
┌────────────┴───────┐ ┌───┴────────────────┐
│ Clipboard Watcher │ │ Selection Pipeline │
│ 300ms polling │ │ write + auto paste │
└────────────▲───────┘ └───▲────────────────┘
│ │
┌──────┴───────────────┴──────┐
│ Storage (SQLite+Files) │
└──────────────────────────────┘
src/ SvelteKit frontend
src-tauri/src/ Rust backend (watcher/storage/commands)
src-tauri/tests/ Rust integration tests
docs/zh/ Chinese docs
docs/en/ English docs
scripts/ Helper scripts
- Node.js 20+
- pnpm 9+
- Rust stable
- Xcode Command Line Tools
pnpm install
pnpm devpnpm testpython3 scripts/generate_icons.pyGitHub Releases: https://github.com/Laurc2004/PasteMind/releases
Each release publishes:
PasteMind_<version>_macos_aarch64.dmgPasteMind_<version>_macos_aarch64.app.zipSHA256SUMS.txtRELEASE_NOTES.md
If macOS shows "PasteMind" is damaged and can't be opened, it is usually Gatekeeper quarantine plus unsigned/not-notarized build policy.
For your own downloaded build, run:
xattr -dr com.apple.quarantine /Applications/PasteMind.appThen open once from Finder with right-click Open.
For public distribution, configure Apple signing + notarization secrets in GitHub Actions to avoid this warning entirely.
- No cloud — data is stored in app data directory only
- Auto paste requires macOS Accessibility permission
- By default, known password manager bundle IDs are excluded from capture
Detailed docs:
- English development doc:
docs/en/development.md - English privacy doc:
docs/en/privacy-and-permissions.md - 中文开发文档:
docs/zh/开发指南.md - 中文隐私文档:
docs/zh/隐私与权限.md
- Text/image history capture
- Local persistence and retention
- Menu bar UX and global shortcut
- Permission-aware auto paste fallback
- Signed & notarized distribution
- Login item option
MIT