Simple cross-platform clipboard manager built with Go and Fyne.
Open the clipboard from anywhere by pressing ctrl+shift+space. It keeps a list of all copies and allows you to mark any text as secret to mask it.
- Cross-platform support (Linux, Windows, macOS)
- Global hotkey support (Ctrl+Shift+Space)
- Native GUI using Fyne framework
- Clipboard history with timestamps
- Mark sensitive items as secret
- Clear all clipboard history
- Persistent storage using BoltDB
This project has been migrated from Wails to Fyne for better performance and native desktop integration. The core functionality remains the same, but the UI is now built with native Go widgets instead of web technologies.
sudo apt-get install libgl1-mesa-dev xorg-devNo additional dependencies required.
No additional dependencies required.
go build./palclip- Run the application
- Use
Ctrl+Shift+Spaceto show/hide the clipboard manager window - Click "Copy" to copy an item back to clipboard
- Click "Mark Secret" to hide sensitive content
- Use "Clear All" to remove all clipboard history
- Click "Quit" to exit the application
- Go - Backend and core logic
- Fyne v2 - Cross-platform GUI framework
- BoltDB - Embedded database for persistence
- golang.design/x/clipboard - Clipboard monitoring
- golang.design/x/hotkey - Global hotkey support
