Maccy is a lightweight clipboard manager for macOS. It keeps the history of what you copy and lets you quickly navigate, search, and use previous clipboard contents.
Maccy works on macOS Sonoma 14 or higher.
Download the latest version from the releases page, or use Homebrew:
brew install maccy
n
shortcut.n
shortcut.n
shortcut.You can tell Maccy to ignore all copied items:
defaults write org.p0deje.Maccy ignoreEvents true # default is false
This is useful if you have some workflow for copying sensitive data. You can set ignoreEvents
to true, copy the data and set ignoreEvents
back to false.
You can also click the menu icon with OPTION (⌥) pressed. To ignore only the next copy, click with OPTION (⌥) + SHIFT (⇧) pressed.
By default Maccy will ignore certain copy types that are considered to be confidential or temporary. The default list always include the following types:
org.nspasteboard.TransientType
org.nspasteboard.ConcealedType
org.nspasteboard.AutoGeneratedType
Also, default configuration includes the following types but they can be removed or overwritten:
com.agilebits.onepassword
com.typeit4me.clipping
de.petermaurer.TransientPasteboardType
Pasteboard generator type
net.antelle.keeweb
You can add additional custom types using settings. To find what custom types are used by an application, you can use free application Pasteboard-Viewer. Simply download the application, open it, copy something from the application you want to ignore and look for any custom types in the left sidebar. Here is an example of using this approach to ignore Adobe InDesign.
By default, Maccy checks clipboard every 500 ms, which should be enough for most users. If you want
to speed it up, you can change it with defaults
:
defaults write org.p0deje.Maccy clipboardCheckInterval 0.1 # 100 ms
If for some reason it doesn't work, run the following command in Terminal.app:
defaults delete org.p0deje.Maccy hideFooter
com.apple.is-remote-clipboard
.The translations are hosted in Weblate. You can use it to suggest changes in translations and localize the application to a new language.
There are dozens of similar applications out there, so why build another? Over the past years since I moved from Linux to macOS, I struggled to find a clipboard manager that is as free and simple as Parcellite, but I couldn't. So I've decided to build one.
Also, I wanted to learn Swift and get acquainted with macOS application development.