Is there an easy way to clear/empty the clipboard?

Solution 1:

Yes, you have a choice of three built in methods for clearing the clipboard.

AppleScript/Automator are two simple methods for programmatically manipulating the clipboard.

Here's a little script that does what you want.

tell application "System Events"
    try
        set the clipboard to ""
    on error err_message
        display dialog err_message
    end try
end tell

Also, Automator allows the same. You'll need to define a variable, double click on the name text to set it to null, and then drag in the set clipboard action before running / saving it. The benefit of using automator is that you can assign it as a service and then use system keyboard shortcuts to call it.

screenshot of automator setting the clipboard to null

For AppleScript or one of the nice terminal answers here that use pbpaste you might want to look at a free tool like FastScripts to launch the action from anywhere.

Solution 2:

To set a combination of keys to clear the clipboard, you can create a Service using Automator.

Your service will have a single action, Run Shell Script

The shell script you will use is this:

 pbcopy </dev/null

enter image description here

Then save the service and assign it a keystroke using System Preferences » Keyboard » Keyboard Shortcuts » Services.

enter image description here

The challenge of an application that automatically clears the clipboard one minute after the last paste operation is that said application would have to monitor all the copy and paste events across all applications; presumably you would want the action cancelled if you pasted and then copied new text (you wouldn't want to clear the new content from the clipboard one minute after the last paste of the previous clipboard contents). Such a program could be written, but implementing it with AppleScript or Automator would be a challenge.

Solution 3:

This terminal command replaces the clipboard with an empty string:

echo -n '' | pbcopy

You could put this in a script, then use cron or make a launchdaemon to automate the execution and timing.

Credit for the solution goes to: ShadowOfGed @ Applenova Fora