A smart, privacy-focused clipboard manager for macOS that lives in your menu bar.
- 📋 Stores 15 most recent items - Never lose that thing you copied 10 minutes ago
- 🖼️ Text & Images - Handles both text snippets and images seamlessly
- 🔒 Smart Password Manager Detection - Follows password manager's lead and automatically deletes passwords copied from password managers
- 🗑️ Individual Item Deletion - Hover and delete specific items you don't want
- 🚫 Auto-filters File Paths - Only captures actual content, not file references
- 🎯 Native macOS UI - Clean SwiftUI interface that feels right at home
- 🔐 100% Private - All data stored locally in memory, nothing sent to any server
- ⚡ Lightweight - Minimal resource usage, lives quietly in your menu bar
- Click the clipboard icon in your menu bar
- See your recent clipboard history
- Click any item to copy it again
- Hover to see delete/copy buttons
- That's it!
CommonPlace follows your password manager's lead - when it automatically clears your clipboard (typically after ~90 seconds for security), CommonPlace detects this and removes those items from history too. Your passwords and sensitive data are automatically protected.
- Download CommonPlace v1.0 from Google Drive 📥
- Extract the ZIP and read the included
INSTALL.mdguide - Move
CommonPlace.appto your Applications folder - Right-click → Open (first time only, to bypass security warning)
- Look for the clipboard icon in your menu bar!
# Clone the repository
git clone https://github.com/danlandau-aif/CommonPlace.git
cd CommonPlace
# Build the app
swift build -c release
# Create app bundle
mkdir -p CommonPlace.app/Contents/MacOS
cp .build/release/CommonPlace CommonPlace.app/Contents/MacOS/
chmod +x CommonPlace.app/Contents/MacOS/CommonPlace
# Copy Info.plist (if you have one in the repo)
# Then open the app
open CommonPlace.app- macOS 13.0 (Ventura) or later
- Swift 5.9+ (for building from source)
- View History: Click the menu bar icon
- Copy Item: Click any item in the list
- Delete Item: Hover over item → click red trash icon
- Clear All: Click trash icon in header
- System Settings → General → Login Items
- Click "+" and add CommonPlace.app
- Done! It'll start automatically
Your data never leaves your Mac.
- ✅ All clipboard data stored in memory only
- ✅ No network connections
- ✅ No data collection or analytics
- ✅ No cloud uploads
- ✅ History cleared when app quits
- ✅ Open source - verify the code yourself!
Built with:
- Swift 5.9 - Modern, safe, fast
- SwiftUI - Native macOS interface
- Swift Package Manager - Simple dependency management
- NSPasteboard - macOS clipboard API
- Combine - Reactive data flow
CommonPlace/
├── Sources/
│ ├── main.swift # App entry point
│ ├── AppDelegate.swift # App lifecycle & menu bar
│ ├── ClipboardMonitor.swift # Clipboard monitoring logic
│ ├── ClipboardItem.swift # Data model
│ └── ContentView.swift # SwiftUI interface
├── Package.swift # Swift package definition
└── README.md # This file
# Debug build
swift build
# Release build
swift build -c release
# Run directly
swift runContributions are welcome! Feel free to:
- 🐛 Report bugs
- 💡 Suggest features
- 🔧 Submit pull requests
- 📖 Improve documentation
MIT License - see LICENSE file for details.
- Built with love for the macOS community
- Inspired by the need for a simple, private clipboard manager
- Thanks to everyone who provided feedback and testing!
Questions or issues? Feel free to:
Made with ❤️ for privacy-conscious Mac users