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.
- Lightweight and fast
- Keyboard-first
- Secure and private
- Native UI
- Open source and free
Download the latest version from the releases page, or use Homebrew:
brew cask install maccy
- COMMAND (⌘) + SHIFT (⇧) + C to popup Maccy or click on its icon in the menu bar.
- Type what you want to find.
- To select the history item you wish to copy, press ENTER, or click the item, or use COMMAND (⌘) +
n
shortcut. - To choose the history item and paste, press OPTION (⌥) + ENTER, or OPTION (⌥) + CLICK the item, or use OPTION (⌥) +
n
shortcut. - To delete the history item, press OPTION (⌥) + DELETE (⌫).
- To see the full text of the history item, wait a couple of seconds for tooltip.
- To pin the history item so that it remains on top of the list, press OPTION (⌥) + P. The item will be moved to the top with a random but permanent keyboard shortcut. To unpin it, press OPTION (⌥) + P again.
- To clear all unpineed items, select Clear in the menu. To clear all items including pinned, select Clear in the menu with OPTION (⌥) pressed.
Select the "Launch at login" option or add Maccy to your "Login items".
To change default settings, use the following commands in Terminal.
defaults write org.p0deje.Maccy hotKey control+option+m # default is command+shift+c
defaults write org.p0deje.Maccy historySize 100 # default is 200
To hide you can simply drag the icon away from the status bar with COMMAND (⌘) pressed. To recover the icon, re-open Maccy while it's already running.
You can also control visibility using configuration:
defaults write org.p0deje.Maccy showInStatusBar false # default is true
Don't forget to restart Maccy after using
defaults
command!
Select and paste in one go.
defaults write org.p0deje.Maccy pasteByDefault true # default is false
defaults write org.p0deje.Maccy fuzzySearch true # default is false
Note that enabling fuzzy search will slow down when searching through the long history items list (200+).
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.
defaults write org.p0deje.Maccy hideSearch true # default is false
defaults write org.p0deje.Maccy hideTitle true # default is false
By default Maccy will popup at cursor position. You can change it to be always centered on the screen.
defaults write org.p0deje.Maccy popupPosition center # default is cursor
You can also change it to popup at location of icon in status bar:
defaults write org.p0deje.Maccy popupPosition statusItem
By default Maccy will sort the history by the date of the last time item was copied.
defaults write org.p0deje.Maccy sortBy lastCopiedAt # default
You can change the sorting algorithm so that it sorts by the first time item was copied:
defaults write org.p0deje.Maccy sortBy firstCopiedAt
You can also change the sorting algorithm so that it sorts by the total number item was copied:
defaults write org.p0deje.Maccy sortBy numberOfCopies
defaults write org.p0deje.Maccy imageMaxHeight 100 # default is 40
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
You can add additional custom types:
defaults write org.p0deje.Maccy ignoredPasteboardTypes -array-add "com.myapp.CustomType"
If you accidentally removed default types, you can restore the original configuration:
defaults write org.p0deje.Maccy ignoredPasteboardTypes -array "de.petermaurer.TransientPasteboardType" "com.typeit4me.clipping" "Pasteboard generator type" "com.agilebits.onepassword"
Download and reinstall the latest version from the releases page, or use Homebrew:
brew cask upgrade maccy
open -a Maccy
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.