Welcome to ClipClop, the magical (and now secure!) clipboard synchronization tool that makes your Mac and Android devices share clipboards like they're best friends at a sleepover!
Ever copied something on your Mac and wished you could paste it on your Android phone? Or vice versa? ClipClop is here to make that dream come true! It's like having a clipboard that gallops between your devices faster than you can say "copy-paste"!
ClipClop synchronizes your clipboard content (text AND images!) between your macOS computer and Android devices over your local Wi-Fi network. No cloud services, no data harvesting, just pure local magic! ✨
- 🔄 Real-time sync: Copy on Mac, paste on Android (and vice versa!)
- 🖼️ Image support: Yes, it handles images too! Screenshots, photos, memes - you name it!
- 🔒 End-to-End Encryption: Uses military-grade AES-256 GCM encryption. Your data is safe even on public Wi-Fi.
- 📱 QR Code Pairing: Instantly connect your phone by scanning a QR code.
- 🍎 Native macOS menu bar app: Lives quietly in your menu bar (no Dock icon, no Alt-Tab presence).
- ⚡ Efficient: Uses native macOS events for zero-lag sync and minimal battery usage.
- 🎯 Zero configuration: Just run it, scan the QR code, and you're done!
- Run ClipClop on your Mac (either the
.appor install the.pkg). - Click the menu bar icon (🐴) and select "Connect Mobile".
- Scan the QR code with the ClipClop Android app.
- Start copying and pasting like a clipboard wizard! 🧙♂️
Want to create your own .pkg installer? Here's how to join the ClipClop packaging party:
- macOS
- Python 3.10+
- Xcode Command Line Tools (
xcode-select --install)
# Clone or download this repository
cd ClipClop
# Create a virtual environment (recommended)
python3 -m venv .venv
source .venv/bin/activate
# Install dependencies
pip install -r requirements.txt# Build the .app bundle with PyInstaller
pyinstaller --name "ClipClop" \
--windowed \
--icon="icon.icns" \
--osx-bundle-identifier "com.yourname.clipclop" \
--add-data="icon.icns:." \
--hidden-import="pyperclip" \
--hidden-import="netifaces" \
--hidden-import="rumps" \
--hidden-import="cryptography" \
--hidden-import="qrcode" \
--hidden-import="PIL" \
menubar_app.py
# Make it a menu bar only application (removes Dock icon)
/usr/libexec/PlistBuddy -c "Add :LSUIElement bool true" "dist/ClipClop.app/Contents/Info.plist"pkgbuild \
--component dist/ClipClop.app \
--install-location /Applications \
--identifier com.inventure.clipclop \
ClipClop.pkgsudo installer -pkg ClipClop.pkg -target /
ls -d /Applications/ClipClop.app # Verify it landed in /Applicationsrm -rf dist build ClipClop.pkg ClipClop.specThis leaves your repo tidy and ready for the next build.
ClipClop stores its settings in ~/.config/clipboard_sync_app/settings.json, including your secret encryption key. Do not share this file!
The menu bar app lets you:
- 📊 View connection status
- 📱 Pair new devices via QR Code
- ⏱️ Adjust sync intervals (though "Automatic" is best)
- ❌ Quit the application
Can't connect?
- Ensure both devices are on the same Wi-Fi.
- Check your Mac's Firewall settings (allow incoming connections for ClipClop).
- Re-scan the QR code if you reset the app settings.
App won't open?
- Check Console.app for logs.
- Ensure you have permissions to record the screen/access clipboard (System Settings -> Privacy & Security).
This project is open source and available under the MIT License.
Happy ClipClopping! 🐎📋✨
