A lightweight, memory-efficient clipboard manager for macOS Silicon with system tray integration and keyboard shortcuts.
- System Tray Icon: Always accessible from the menu bar
- Clipboard History: Stores up to 100 recent clipboard items
- Global Shortcuts:
Cmd+Shift+H: Show clipboard history windowCmd+Shift+K: Clear clipboard history
- Multiple Content Types: Supports text, images, and files
- Memory Efficient: Limits item size to 1MB and history to 100 items
- Search: Quickly find items in your clipboard history
- Launch at Login: Optional auto-start with macOS
- Install Xcode Command Line Tools:
xcode-select --install- Build the application:
cd Poster
swift build -c release- The executable will be located at
.build/release/Poster
To run the application:
.build/release/PosterThe app will appear in your menu bar.
To create a proper macOS app bundle:
- Create the app structure:
mkdir -p Poster.app/Contents/MacOS
mkdir -p Poster.app/Contents/Resources- Copy the executable:
cp .build/release/Poster Poster.app/Contents/MacOS/- Copy the Info.plist:
cp Info.plist Poster.app/Contents/- Now you can drag
Poster.appto your Applications folder.
- Click the clipboard icon in the menu bar to see recent items
- Double-click an item in the history window to paste it
- Use keyboard shortcuts for quick access
- Access preferences to customize shortcuts and settings
This app requires accessibility permissions to:
- Monitor clipboard changes
- Simulate paste operations
You'll be prompted to grant these permissions on first run.