A lightweight, secure, and modern clipboard manager built with Rust (Tauri v2) and Vue 3.
- 📋 History Management: Automatically records text and images copied to your clipboard.
- 🔍 Smart Search: Quickly find clipboard history with full-text search.
- 🖼️ Image Support: View and paste images directly from your history.
- 📸 Screenshot Tool: Built-in screenshot tool with annotation support (rectangles, ellipses, arrows, pen, text).
- 🔒 Privacy Focused:
- Sensitive Data Detection: Manually mark items as sensitive or configure sensitive apps.
- App Filtering: Ignore clipboard changes from specific applications (e.g., password managers).
- Memory Only: Sensitive items can be marked to not persist to disk.
- 📌 Pinning: Pin important items to the top of the list to prevent them from being auto-deleted.
- ⚡ Performance: Optimized for large text content with lazy loading.
- 📚 Paste Stack: Copy multiple items in sequence and paste them in order (FIFO/LIFO).
- 📝 OCR: Extract text from images directly within the app (macOS & Windows).
- 📏 Compact Mode: A dense view for power users to see more items at once.
- ⌨️ Keyboard Driven: Vim-like navigation (
j/k) and global shortcuts. - 🌍 Internationalization: Support for English and Chinese (简体中文).
- 🚀 Auto-start: Option to launch automatically at system login.
- Toggle Clipboard History:
Cmd+Shift+V(macOS) orCtrl+Shift+V(Windows/Linux) - Default, configurable in settings. - Take Screenshot: Trigger screenshot mode to capture and annotate your screen.
The built-in screenshot tool allows you to capture, annotate, and save screenshots:
- Trigger Screenshot: Use the configured shortcut or menu option.
- Select Area: Click and drag to select the area you want to capture.
- Annotate: Use the toolbar to add annotations:
- Rectangle / Ellipse / Arrow: Draw shapes
- Pen: Free-hand drawing
- Text: Add text annotations
- Save: Press
Enteror click the checkmark to save the screenshot to your clipboard. - Cancel: Press
Escor click the X button to cancel.
macOS Users: On first use, macOS will request Screen Recording permission. Please grant this permission in System Settings > Privacy & Security > Screen Recording, then restart the app.
- Select Item:
↑/↓orCtrl+n/Ctrl+porCtrl+j/Ctrl+k(Vim style) - Paste Item:
Enter - Multi-Select (Paste Stack):
xorCmd+Clickto select items. PressEnterto start the stack, then use the Global Shortcut to paste items sequentially. - Preview Item:
Space(Press again to close) - OCR (Image Preview): In preview mode, click the "Extract Text" button to copy text from image.
- Close / Back:
Esc
Your clipboard history and settings are stored locally in:
- macOS:
~/.clipboard-manager/ - Windows/Linux:
~/.clipboard-manager/(or standard AppData location)
~/.clipboard-manager/
├── config.json # User settings
├── history.db # Encrypted clipboard history (AES-GCM)
├── secret.key # Encryption key
├── images/ # Clipboard image history
└── captures/ # Saved screenshots
Note: The database is encrypted using AES-GCM for security.
- Backend: Rust, Tauri v2, SQLite
- Frontend: Vue 3, TypeScript, Tailwind CSS v4
- UI Components: Radix Vue, Lucide Icons
-
Clone the repository:
git clone https://github.com/yourusername/clipboard.git cd clipboard -
Install frontend dependencies:
pnpm install
-
Run the development server:
pnpm tauri dev
To build the application for production:
pnpm tauri buildThe executable will be located in src-tauri/target/release/bundle/.
This project is licensed under the GNU General Public License v3.0. See the LICENSE file for details.
Contributions are welcome! Please feel free to submit a Pull Request.