Slackadays / Clipboard

😎🏖️🐬 Your new, 𝙧𝙞𝙙𝙤𝙣𝙠𝙪𝙡𝙞𝙘𝙞𝙤𝙪𝙨𝙡𝙮 smart clipboard manager
https://getclipboard.app/
GNU General Public License v3.0
4.49k stars 131 forks source link
bash cli clipboard clipboard-manager cmd collaborate command-line console cpp cross-platform hacktoberfest learn library linux macos productivity shell terminal windows


The Clipboard Project



The fully-featured yet oh-so-easy-to-use clipboard manager for everyone.


The Clipboard Project is a fast and lightweight, feature packed, and user friendly tool that lets you do more on the computer in style. Seriously.

Say hello to one of the most cutting-edge clipboard managers ever. Save time and effort easier and more powerfully than ever before.

Don't just take my word for it!


Just let the features speak for themselves.


I believe Clipboard is the best tool for clipboard interaction. As a matter of fact, as of today you have 2713 stars on github, kudos! Keep up the good work.

- pidario on GitHub.com


Thanks for your work! This is by-far one of my favourite projects on GitHub!

- MiguelGuthridge on GitHub.com


...I've just discovered CB & it's suiting my needs very well!

- all64bits on Discord.com


I started using this because I just wanted an easy "cb copy && cb paste" VS trying to remember the correct input AND output flags when Im using xclip with different file types. I write a lot of shell scripts that copy certain stuff like images and text and this makes it a lot easier.

- SweetBabyAlaska on Reddit.com


As a sysadmin and hourly terminal user, I found it so useful. Making stuffs some easier.

- Simpleboy_ir on Reddit.com


Thank you for this app, so simple yet effective! Hats off 🎩 👌

- GlassGruber on GitHub.com


BTW, really LOVE this project. Its [sic] so unbelievable it isn't already in Linux.

- AtomicRobotMan0101 on GitHub.com


...Thank you again for this great application!

- kohane27 on GitHub.com


CB Demo Video


Discord Chat



Ready to turbocharge your productivity? Then let's get started with CB.



Quick Installation

All Except Windows

curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh

Windows (run as Administrator)

(Invoke-WebRequest -UseBasicParsing https://github.com/Slackadays/Clipboard/raw/main/install.ps1).Content | powershell



Premade Builds

Packaging status

Alpine Linux (you'll need to enable the Community packages first)

apk add clipboard


AUR (Use your favorite AUR helper such as yay. You can also get clipboard-bin and clipboard-git)

yay -S clipboard


Flatpak Flathub (You can also get our nightly Flatpak builds under GitHub Downloads)

flatpak install app.getclipboard.Clipboard
# After installing, do "alias cb='flatpak run app.getclipboard.Clipboard'" to use CB easily.
# Then, add that command to your terminal profile (like .bashrc) to make it work every time.

Download on Flathub


Gentoo GURU and LiGurOS (For Gentoo, enable the GURU repo first)

emerge -av app-misc/clipboard


Homebrew

brew install clipboard


Nix

nix-env -iA nixpkgs.clipboard-jh


Pacstall

pacstall -I clipboard-bin


Scoop

scoop install clipboard


Snap (You can also get our nightly Snap builds under GitHub Downloads)

sudo snap install clipboard
# After installing, do "alias cb='snap run clipboard'" to use CB easily.
# Then, add that command to your terminal profile (like .bashrc) to make it work every time.

Get it from the Snap Store


Void Linux

sudo xbps-install -S Clipboard


GitHub Downloads

First, get the latest revision of the Clipboard Project from GitHub Actions or the latest release from GitHub Releases.

Then, unpack what you just downloaded to a nice place anywhere on your system.

If you downloaded the Flatpak, now do flatpak install what-you-downloaded.flatpak. Or if you downloaded the Snap, now do sudo snap install --dangerous what_you_downloaded.snap.

Finally, add CB to your PATH (so that you can run it anywhere) by doing one of the following:

# For all platforms except Windows, Flatpak, and Snap
$ export PATH=$PATH:/where/you/unpacked/cb
# Add this to your terminal startup file like .bashrc or the equivalent so that it works every time.
# To get the current path (in case you don't know it), do the "pwd" command.

# For Flatpak
$ alias cb='flatpak run app.getclipboard.Clipboard'
# Add this to your terminal startup file like .bashrc or the equivalent so that it works every time.

# For Snap
$ alias cb='snap run clipboard'
# Add this to your terminal startup file like .bashrc or the equivalent so that it works every time.

# For Windows PowerShell
> $Env:PATH += ";C:\where\you\unpacked\cb"
# Add this to your PowerShell profile (which is located in $profile) so that this works every time.
# To get the current path (in case you don't know it), do the "Get-Location" command.



Install Manually

You'll need CMake and C++20 support, and if you want X11 or Wayland support, you'll also need libx11 or libwayland plus Wayland Protocols respectively. If you're on Linux, you'll need ALSA.

Get the latest release instead of the latest commit by adding --branch 0.9.0.1 right after git clone....

Change the system installation prefix by adding -DCMAKE_INSTALL_PREFIX=/custom/prefix to cmake .., or the library install location by adding -DCMAKE_INSTALL_LIBDIR=/custom/dir.

# First, let's download the code and go a nice place to build everything.
$ git clone https://github.com/Slackadays/Clipboard 
$ cd Clipboard/build

# Now let's set up CMake and build CB.
$ cmake -DCMAKE_BUILD_TYPE=Release ..
$ cmake --build . -j 12

# Finally, let's install it onto our system.
$ cmake --install .

Uninstall

Remove everything listed in install_manifest.txt. If you're not using Windows, you can also do xargs rm < install_manifest.txt.



Now let's start saving time and effort.



How To Use

Examples

# Let's start by copying a file.
$ cb copy NuclearLaunchCodes.pdf

# Now, let's paste this file.
$ cb paste

# Not bad, right?

# Let's make a note for this clipboard.
$ cb note "Keep this a secret"

# What if you wanted to pipe the note in?
$ echo "Keep this a secret OR ELSE" | cb note

# Now let's cut a directory to a different clipboard.
$ cb cut69 MyDirectory

# We put the 69 right after "cut" to tell CB to put MyDirectory in clipboard 69.

# Let's add a file to this same clipboard.
$ cb add69 SomeFile

# To remove a file, enter its name to remove just that file.
$ cb remove69 SomeFile

# Alternatively, you can put in a regex pattern instead to generalize the removal.
$ cb remove69 "So.*le"

# Finally, let's paste what we have in clipboard 69.
$ cb paste69

# You can copy multiple files at the same time. 
# Let's try the "_420" persistent clipboard for this one.
$ cb copy_420 foo.bar NotAVirus.bar.mp3.exe

# Like before, we can remove anything with a regex patttern.
$ cb remove_420 "*.mp3\.exe"

# Notes work exactly the same way for every clipboard.
$ cb note_420 "Some kosher content here"

# Let's look at everything we've stored in clipboard _420.
$ cb show_420

# Now let's see our original note and then clear that clipboard. 
$ cb note
$ cb clear

# This is the same as "cb note" but for clipboard "_420" again.
$ cb note_420

# Let's shake things up. Say you have some kind of content you want to ignore.
# This content could be anything from a password to raw binary data.
# To ignore certain kinds of content, use a regex pattern of your choice.

# Let's try this with a classic example.
$ cb ignore "H.*2"

# This pattern will ignore anything starting with "H" and ending with "2."

# Now, this next command will fail because CB will ignore the content in it through the pattern.
$ cb copy "Hunter2"

# Let's get some more detailed information about our clipboards.
$ cb info
$ cb info69
$ cb info_420

# To wrap things up, let's get a bird's eye view of everything so far.
$ cb
# Doing "cb" is the exact same as "cb status."
$ cb status

# These are just a handful of examples. 
# Check the documentation below for tons more examples of all the commands!


The Basics

Add a number to the end of your action to choose which temporary clipboard you want to use (the default is 0). Or, add _ to use a persistent clipboard instead.

Copycb [--](copy|cp)[(num)|_(id)] (file) [files] or (something) | cb [[--](copy|cp)][(num)|_(id)]
Copy a file. ```sh $ cb copy FooFile $ cb --copy FooFile $ cb cp FooFile $ cb --cp FooFile # These are the same! ``` Copy a file and a directory. ```sh $ cb copy FooFile BarDir # These are also the same! ``` Copy piped in data. ```sh $ echo "Foobar" | cb $ echo "Foobar" | cb copy # The "copy" action is optional here since the only possible action here in the first place is "copy" ``` Copy text directly. ```sh $ cb copy "Aventura was the best bachata band" ``` Note: This happens instead of copying a file/directory if there is only one item present and that item doesn't exist as a file/directory. Copy a file to the clipboard named "4" ```sh $ cb copy4 FooFile ``` Copy piped in data to the persistent clipboard named "hello" ```sh $ echo "Foobar" | cb copy_hello ``` Copy text to the clipboard named "hey" ```sh $ cb --clipboard hey copy "Aventura was the best bachata band" $ cb -c hey copy "Aventura was the best bachata band" # These are the same! ``` Copy a file with spaces and many directories to clipboard "50" using the abbreviated action name. ```sh $ cb cp50 "Aventura/God's Project/04 Un Chi Chi.flac" BarDir BazDir ```


Cutcb [--](cut|ct)[(num)|_(id)] (file) [files] or (something) | cb [[--](cut|ct)][(num)|_(id)]
Cut a file. ```sh $ cb cut FooFile $ cb --cut FooFile $ cb ct FooFile $ cb --ct FooFile # These are the same! ``` Cut a file and a directory. ```sh $ cb cut FooFile BarDir # These are also the same! ``` Cut piped in data. ```sh $ echo "Foobar" | cb cut ``` Note: Cutting piped in data is the same as copying, except that CB will delete all content after you paste it somewhere. Cut text directly. ```sh $ cb cut "Hunter2" ``` Note: This happens instead of cutting a file/directory if there is only one item present and that item doesn't exist as a file/directory. Cut a file to the clipboard named "4" ```sh $ cb cut4 FooFile ``` Cut piped in data to the persistent clipboard named "hello" ```sh $ echo "Foobar" | cb cut_hello ``` Cut text to the clipboard named "hey" ```sh $ cb --clipboard hey cut "Aventura was the best bachata band" $ cb -c hey cut "Aventura was the best bachata band" # These are the same! ``` Cut a file with spaces and many directories to clipboard "50" using the abbreviated action name. ```sh $ cb ct50 "Aventura/God's Project/04 Un Chi Chi.flac" BarDir BazDir ```


Pastecb [--](paste|p)[(num)|_(id)] [regex] [regexes] or cb [[--](paste|p][(num)|_(id)] | (something) or cb [[--](paste|p)][(num)|_(id)] > (some file)
Start by copying or cutting something. ```sh $ cb copy FooFile WhyAventuraIsTheBest.pdf ``` Paste in the current working directory. ```sh $ cb paste $ cb --paste $ cb p $ cb --p # These are the same! ``` Note: If you paste after cutting, then CB will delete the original files that you cut. Paste anything containing "Aventura." ```sh $ cb p ".*Aventura.*" ``` Now, let's copy some raw data. ```sh $ echo "Bananas!" | cb ``` Paste the raw data file in the current working directory. ```sh $ cb paste # Also the same ``` Pipe everything out to some file. ```sh $ cb paste > SomeFile ``` Pipe everything from clipboard "42" out to some file. ```sh $ cb paste42 > SomeFile $ cb p42 > SomeFile $ cb -c 42 > SomeFile # These three versions all work great! ``` Pipe everything out to some program. ```sh $ cb | cat # These three versions also all work great. $ cb | Write-Output # The version for PowerShell ``` Pipe everything from persistent clipboard "2" out to some program. ```sh $ cb paste_2 | cat $ cb p_2 | cat $ cb -c _2 | cat # These three versions also all work great. $ cb -c _2 | Write-Output # The version for PowerShell ``` Note: If you paste after cutting, then CB will delete the raw data afterwards, effectively only letting you paste once.


Add Contentscb [--](add|ad)[(num)|_(id)] (file|text) [files] or (something) | cb [[--](add|ad)][(num)|_(id)]
Start by copying something. ```sh $ cb copy FooFile ``` Add a file. ```sh $ cb add SomeOtherFile $ cb --add SomeOtherFile $ cb ad SomeOtherFile $ cb --ad SomeOtherFile # CB now holds FooFile and SomeOtherFile ``` Add a directory. ```sh $ cb add "We Broke The Rules" ``` Now let's copy some raw data. ```sh $ cb copy "'Let me find that'" ``` Add raw data to the end of what's stored. ```sh $ cb add " is one of Romeo Santos' catchphrases." # The content is now: 'Let me find that' is one of Romeo Santos' catchphrases. ``` Add raw data by piping it in. ```sh $ echo " What's yours?" | cb add # The content is now: 'Let me find that' is one of Romeo Santos' catchphrases. What's yours? ```


Remove Contentscb [--](remove|rm)[(num)|_(id)] (regex) [regexes] or (some regex) | cb [[--](remove|rm)][(num)|_(id)]
Start by copying something. ```sh $ cb copy FooFile BarDir BazDir ``` Remove everything starting with "B" ```sh $ cb remove "B.*" $ cb --remove "B.*" $ cb rm "B.*" $ cb --rm "B.*" # CB will match this against "BarDir" and "BazDir" and remove them ``` Remove everything matching a specific name ```sh $ cb remove "BarDir" # CB will match this against "BarDir" only and remove it ``` Now let's copy some raw data. ```sh $ cb copy "A bachatero is someone who makes bachata music." ``` Remove anything with a space beforehand and that ends with "-ero" ```sh $ cb remove "(?<= ).*ero" # The content is now: A is someone who makes bachata music. ``` Remove anything matching "music" by piping the pattern in. ```sh $ echo "music" | cb remove # The content is now: A is someone who makes bachata . ```


Show Contentscb [--](show|sh)[(num)|_(id)] [regex] [regexes] or cb [--](show|sh)[(num)|_(id)] [regex] [regexes] | (something)
Start by copying something. ```sh $ cb copy FooFile BarDir BazDir ``` List all the items in the clipboard. ```sh $ cb show $ cb --show $ cb sh $ cb --sh # These all work great! ``` Now let's copy some raw data. ```sh $ cb copy "Those who are tired of bachata are tired of life" ``` Show the contents of the clipboard. ```sh $ cb show ``` Show the raw filepaths of everything in the clipboard. ```sh $ cb sh | cat ``` Show raw filepaths to a program. ```sh $ cb copy "02 I Believe.flac" $ eval vlc $(cb sh) # Use the eval command here to process the raw filepath (which in this case looks like "/tmp/Clipboard/0/02 I Believe.flac") as if it were entered in a shell # Otherwise, you'll likely get errors complaining about being unable to process quote characters. ```


Clear Clipboardcb [--](clear|clr)[(num)|_(id)]
Start by copying something. ```sh $ cb copy FooFile BarDir BazDir ``` Clear the clipboard of all data. ```sh $ cb clear $ cb --clear $ cb clr $ cb --clr # These all work great! ```


Edit Clipboard Contentcb [--](edit|ed)[(num)|_(id)] [editor]
Start by copying some text. ```sh $ cb copy "Hello Clipboard! This is just some example content." ``` Edit the clipboard content. ```sh $ cb edit $ cb --edit $ cb ed $ cb --ed # These all work great! ``` Use a custom editor to edit with. ```sh cb edit nano cb ed vim cb ed code ```


Move Things Around

Load Contentscb [--](load|ld)[(num)|_(id)] [clipboard] [clipboards]
Start by copying something. ```sh $ cb copy "Yo dawg! I heard you liked bachata music." ``` Load the contents of the clipboard into other clipboards. ```sh $ cb load 1 2 3 _foo $ cb --load 1 2 3 _foo $ cb ld 1 2 3 _foo $ cb --ld 1 2 3 _foo # All work great! ``` Note: If you don't provide a destination clipboard, then the Load action will load the contents into the default clipboard. Load the contents of some clipboard into the default. ```sh $ cb load_foo ``` Note: This is useful if you want to load content into GUI clipboard systems, as they only connect to the default clipboard.


Swap Contentscb [--](swap|sw)[(num)|_(id)] [clipboard]
Start by copying something to two clipboards. ```sh $ cb copy "After breaking up from Aventura, Romeo Santos' music just wasn't up to snuff." $ cb copy2 "I'd just like to interject for a moment. What you're referring to as Linux, is in fact, GNU/Linux, or as I've recently taken to calling it, GNU plus Linux." ``` Swap the contents of two clipboards. ```sh $ cb swap 2 $ cb --swap 2 $ cb sw 2 $ cb --sw 2 # All work great! $ cb swap2 $ cb --swap2 $ cb sw2 $ cb --sw2 # Since swapping is commutative, the target can be freely swapped with the destination. ``` Note: If you don't provide a destination clipboard, then the Swap action will swap the contents into the default clipboard.


Import Clipboardscb [--](import|imp) [source folder]
Start by exporting a clipboard. ```sh $ cb copy "The reason Aventura was so popular was because the music was so well-written as well as the luscious guitar chorus effect." $ cb export ``` Import all clipboards from a folder. ```sh $ cb import $ cb --import $ cb imp $ cb --imp # These all work great! ``` Note: Currently, CB imports from a folder called `Exported_Clipboards`. Choose what folder to import from. ```sh $ cb import MySavedClipboards ```


Export Clipboardscb [--](export|ex) [clipboard] [clipboards]
Start by copying something. ```sh $ cb copy "Aventura's music is some of the most erotic you'll find anywhere." ``` Export all clipboards to a folder. ```sh $ cb export $ cb --export $ cb ex $ cb --ex # These all work great! ``` Note: Currently, CB exports to a folder called `Exported_Clipboards`. Choose what clipboards to export. ```sh $ cb export 1 2 3 ```


Queue Clipboard Historycb [--](history|hs)[(num)|_(id)]
Start by copying several things. ```sh $ cb copy "There are at least two \"Anthony Santos\" who are known for bachata music: the \"regular\" Anthony Santos and Anthony \"Romeo\" Santos." $ cb copy "blah blah blah" $ cb copy "Clipboard Project is the best clipboard manager around" ``` Show the history. ```sh $ cb history $ cb --history $ cb hs $ cb --hs # These all work great! ```


Get Older Clipboard Entriescb [--](history|hs)[(num)|_(id)] (clipboard) [clipboards]
Start by copying several things. ```sh $ cb copy "There are at least two \"Anthony Santos\" who are known for bachata music: the \"regular\" Anthony Santos and Anthony \"Romeo\" Santos." $ cb copy "blah blah blah" $ cb copy "Clipboard Project is the best clipboard manager around" ``` Bring an older entry (or entries) to the front. ```sh $ cb history 1 $ cb --history 2 $ cb hs 1 $ cb --hs 1 2 # These all work great! ```


See Everything

Set Notecb [--](note|nt)[(num)|_(id)] (text) or (something) | cb [[--](note|nt)][(num)|_(id)]
Add a personal note to a clipboard. ```sh $ cb note "For my Aventura music collection" $ cb --note "For my Aventura music collection" $ cb nt "For my Aventura music collection" $ cb --nt "For my Aventura music collection" # All work great! ``` Add a personal note to a clipboard by piping it in. ```sh $ echo "For my Aventura music collection" | cb note ``` Remove a note from a clipboard. ```sh $ cb note "" ```


Show Notecb [--](note|nt)[(num)|_(id)]
Start by adding a note to a clipboard. ```sh $ cb note "For my Aventura music collection" ``` Show the note you added. ```sh $ cb note $ cb --note $ cb nt $ cb --nt ```


Set Ignore Rulescb [--](ignore|ig)[(num)|_(id)] (regex) [regexes] or (regex) | cb [[--](ignore|ig)][(num)|_(id)]
Set some kinds of content to always ignore. ```sh $ cb ignore "(?


Show Ignore Rulescb [--](ignore|ig)[(num)|_(id)]
Start by adding some ignore regex rules to a clipboard. ```sh $ cb ignore "Foo" "Bar" "Baz" ``` Show the rules you just added. ```sh $ cb ignore $ cb --ignore $ cb ig $ cb --ig ```


Show Detailed Infocb [--](info|in)[(num)|_(id)] or cb [--](info|in)[(num)|_(id)] | (something)
Show helpful details for a clipboard. ```sh $ cb info $ cb --info $ cb in $ cb --in # All are the same! ``` Output these helpful details in JSON format. ```sh $ cb info | cat $ cb info | jq ```


Search Clipboard Contentscb [--](search|sr)[(num)|_(id)] (query) [queries]
Start by copying several things. ```sh $ cb copy Foo Bar Baz $ cb copy "Some example content" $ cb copy2 "Blah bleh bluh bloh" ``` Search a clipboard's contents. ```sh $ cb search Foo $ cb --search Blah $ cb sr Bar $ cb --sr Baz # All are the same! ```


Show Help Messagecb (-h|[--]help)
Show the help message. ```sh $ cb help $ cb --help $ cb -h # These three versions all work great! ```


Check All Clipboards' Statuscb [[--]status|st] or cb [--](status|st) | (something)
Check the status of all clipboards that have content. ```sh $ cb status $ cb --status $ cb st $ cb --st $ cb # These all work great! ``` Get the status of all clipboards in JSON format. ```sh $ cb status | cat ```


Check Your Configurationcb [[--]config|cfg]
Check your configuration of CB. ```sh $ cb config $ cb --config $ cb cfg $ cb --cfg # These all work great! ```


Tips And Tricks

Need to paste a funky symbol somewhere a lot? Copy it to a persistent clipboard.

$ cb cp_theta θ
$ cb -c amog cp ඞ

Paste whatever's in the clipboard straight into your favorite text editor.

# Vim
:r !cb
# Nano
[Ctrl-T] cb
# VSCode
cb | code -

Copy a password securely by deleting it once you've pasted it.

$ cb cut "AVeryStrongPassword!"
$ cb | some-program
# Now gone

On a slow system? Cache certain things so you don't have to do them again.

$ neofetch | cb cp_neo
$ cb | cat

Yank anything sitting in your terminal without ever touching the mouse.

$ env | yank -d = -- cb

Instantly copy to the main clipboard using your favorite dmenu tool.

$ cb cp "$(cb st | jq -r '.[] | if type=="array" then .[].path else if type=="object" then .path else . end end' | dmenu)"
# For copying the latest entry from any of your clipboards
$ cb cp "$(cb hs | jq -r '.[].content | if type=="array" then .[].path else if type=="object" then .path else . end end' | dmenu)"
# For copying any entry from a specific clipboard

Need to share or pore over log files? Copy them in one step!

$ journalctl | cb
# For systemd
$ sudo dmesg | cb
# For Linux; note that you're not running "sudo cb" here
$ cb copy logs/latest.log
# For Minecraft servers

Want CB to look different? Change up the color scheme.

# This one looks like The Matrix
$ export CLIPBOARD_THEME=green
$ cb
# This one is for light backgrounds
$ export CLIPBOARD_THEME=light
$ cb
# Check out the other themes too!

Here's what some of these themes might look like.

Make your own scripts that can fully automate your workflows.

#!/bin/sh
# This script does nothing except serve as an example of automating CB.
link="https://SomeWebsiteWithLotsOfContent"
wget link
cb copy *.jpg *.png
cb remove "AZ.*\.png"
cb | tar -cf foobar.tar
cb -c footar < foobar.tar
cb note "Latest files from website ABCXYZ"



Let's make CB our own.



Simple Configuration

Flags

--all, -a   Add this when clearing to clear all clipboards at once, or when searching to search all clipboards.
Start from a blank slate. ```sh $ cb --all clear ``` WARNING! This will get rid of everything you've stored with CB, so be very careful when clearing with this option.


--clipboard (clipboard), -c (clipboard)   Add this to choose which clipboard you want to use.
Choose a non-default clipboard. ```sh $ cb -c 5 copy Foobar $ cb --clipboard 10 copy BarBaz ``` Copy to a temporary clipboard that doesn't start with a number. ```sh $ cb -c SomeCB copy "A really really long sentence, and I mean really realy super DUPER long!" ``` Note: Although copying to a temporary clipboard that doesn't start with a number is impossible using the conventional method of adding it to the end of the action, this alternative method is completely supported and works great. Choose a persistent clipboard. ```sh $ cb -c _ copy "Generation Next"/* ```


--entry (entry), -e (entry)   Add this to choose which history entry you want to use.
Choose a non-default history entry. ```sh $ cb -e 5 copy Foobar $ cb --entry 10 copy BarBaz ``` Note: To copy to a non-default entry, that entry must exist already.


--fast-copy, -fc   Add this to use links when copying, cutting, pasting, or loading. If you modify the items that you used with this flag, then the items you paste will have the same changes.
Copy a lot of files in much less time than before. ```sh $ cb --fast-copy copy /usr/bin/* ```


--mime, -m   Add this to request a specific content MIME type from GUI clipboard systems.
Save GUI clipboard content of a specific MIME type to the main clipboard. ```sh $ cb --mime text/html | cb ```


--no-confirmation, -nc   Add this to disable confirmation messages from CB.
Reduce distractions after showing some text content. ```sh $ cb -nc sh | cat ```


--no-progress, -np   Add this to disable progress messages from CB.
Reduce distractions while doing a search that takes a while. ```sh $ fzf | cb -np ```


--bachata   Add this for something special!
Make your life less boring. ```sh $ cb --bachata ```



Environment Variables

CI   Set this to "true" or "1" to make CB overwrite existing items without a user prompt when pasting. This variable is intended for Continuous Integration scripts where a live human is not present to make decisions.
Use CB in a CI script. ```sh ... cb cp Temp/* ... cb p ... ```


CLIPBOARD_EDITOR   Set this to the editor you want to use for the Edit action.
Set a custom editor to use. ```sh $ export CLIPBOARD_EDITOR=nano ``` Note: The environment variables `EDITOR` and `VISUAL` by default take precedence if `CLIPBOARD_EDITOR` isn't set.


CLIPBOARD_HISTORY   Set this to the maximum history size you want to keep, like 10000 or 50gb.
`CLIPBOARD_HISTORY` supports up to 2^32 - 1 as a value. So, go ahead. Crank that b*tch up to a billion. ```sh $ export CLIPBOARD_HISTORY=1000000000 $ cb copy "Oh yeah!" ``` Only keep a certain amount of data. ```sh $ export CLIPBOARD_HISTORY=100tb $ cb copy Yo_Mama.tar.gz ``` Note: You can choose between `tb`, `gb`, `mb`, `kb`, and `b` to specify amounts for terabytes, gigabytes, megabytes, kilobytes, and bytes respectively. Only keep a certain time length. ```sh $ export CLIPBOARD_HISTORY=52w ``` Note: You can choose between `y`, `m`, `w`, `d`, and `h` to specify amounts for years, months, weeks, days, and hours respectively.


CLIPBOARD_LOCALE   Set this to the locale that only CB will use for its commands and output, like en_US.UTF-8 or es_DO.UTF-8.
Change the locale to match what you're more comfortable with. ```sh $ export CLIPBOARD_LOCALE=es_DO.UTF-8 $ cb cp "Amo a Aventura" > $Env:CLIPBOARD_LOCALE=es_DO.UTF-8 # Powershell version ``` Override the locale case-by-case. ```sh $ export CLIPBOARD_LOCALE=fr_CA.UTF-8 ... $ CLIPBOARD_LOCALE="" cb cp Foobar ```


CLIPBOARD_TMPDIR   Set this to the directory that only CB will use to hold the items you cut or copy into a temporary directory.
Choose a special place to put your temporary clipboards this one time. ```sh $ CLIPBOARD_TMPDIR=/home/jackson/SomeDirectory cb copy * ``` Choose a special place to put your temporary clipboards every time. ```sh $ export CLIPBOARD_TMPDIR=/home/jackson/SomeDirectory $ cb copy * > $Env:CLIPBOARD_TMPDIR = /home/jackson/SomeDirectory # Powershell ``` Note: By default, CB uses the C++ filesystem library function `fs::temp_directory_path()` to generate the temporary directory, prioritizing `CLIPBOARD_TMPDIR` and then `XDG_RUNTIME_DIR` respectively first if CB can get a value from them.


CLIPBOARD_PERSISTDIR   Set this to the directory that only CB will use to hold the items you cut or copy into a persistent directory.
Choose a special place to put your persistent clipboards this one time. ```sh $ CLIPBOARD_PERSISTDIR=/home/jackson/SomeDirectory cb copy * ``` Choose a special place to put your persistent clipboards every time. ```sh $ export CLIPBOARD_PERSISTDIR=/home/jackson/SomeDirectory $ cb copy * > $Env:CLIPBOARD_PERSISTDIR = /home/jackson/SomeDirectory # Powershell ``` Note: By default, CB uses the user's home directory to generate the persistent directory, prioritizing `CLIPBOARD_PERSISTDIR` and then `XDG_STATE_HOME` first respectively if CB can get a value from them.


CLIPBOARD_CUSTOMPERSIST   Set this to the clipboards you want to make persistent, using regex.
Make everything you copy persistent. ```sh $ export CLIPBOARD_CUSTOMPERSIST=".*" $ cb copy Foo Bar Baz # This puts everything in the persistent directory but still with the clipboard name "0" ``` Make some clipboards persistent. ```sh $ export CLIPBOARD_CUSTOMPERSIST=5 $ cb copy5 Foo Bar Baz ```


CLIPBOARD_NOAUDIO   Set this to "true" or "1" to disable audio coming from CB.
Turn off those sound effects. ```sh $ export CLIPBOARD_NOAUDIO=1 $ cb ffksdjfdj # No more error sounds after doing a nonexistent command ```


CLIPBOARD_NOGUI   Set this to "true" or "1" to disable integration with GUI clipboards.
Debug a flaky GUI system by disabling its integration with CB. ```sh $ CLIPBOARD_NOGUI=1 cb show $ export CLIPBOARD_NOGUI=1 $ cb show ```


CLIPBOARD_NOPROGRESS   Set this to "true" or "1" to disable only progress messages from CB.
Reduce distractions while doing a search that takes a while. ```sh $ fzf | CLIPBOARD_NOPROGRESS=1 cb ``` Disable progress messages from CB entirely. ```sh $ export CLIPBOARD_NOPROGRESS=1 $ fzf | cb ```


CLIPBOARD_NOREMOTE   Set this to "true" or "1" to disable remote clipboard sharing.
Disable all clipboard content transfers through the terminal. ```sh $ export CLIPBOARD_NOREMOTE=1 ```


CLIPBOARD_SILENT   Set this to "true" or "1" to disable progress and confirmation messages from CB.
Rest in peace by seeing nothing that isn't an error. ```sh $ export CLIPBOARD_SILENT=1 $ cb cp "I'm running out of Aventura references" ```


CLIPBOARD_THEME   Set this to the color theme that CB will use. Choose between light, darkhighcontrast, lighthighcontrast, amber, green, and ansi (the default is dark).
Remind yourself of the terminals of the past. ```sh $ export CLIPBOARD_THEME=green $ cb cp "I'm in the Matrix now" $ export CLIPBOARD_THEME=amber $ cb cp "Yellow terminals feel just like sitting in front of a nice campfire" ``` Make CB more accessible. ```sh $ export CLIPBOARD_THEME=darkhighcontrast $ cb show ```


FORCE_COLOR   Set this to "true" or "1" to make CB always show color regardless of what you set NO_COLOR to.
Override somebody else's choice to disable colors. ```sh $ export NO_COLOR=1 ... $ FORCE_COLOR=1 cb copy "There are almost no bachateros where I live right now" ``` Note: CB also supports `CLICOLOR_FORCE`. Override somebody else's choice to disable colors, but in a different way. ```sh $ export CLICOLOR=0 ... $ CLICOLOR_FORCE=1 cb copy "There are almost no bachateros where I live right now" ```


NO_COLOR   Set this to anything to make CB not show any colors.
Make CB look boring. ```sh $ export NO_COLOR=1 $ cb cp "From the 1960s until the 1990s, bachata was perceived as boring music for poor Dominicans." ``` Note: CB also supports `CLICOLOR`. Make CB look boring, but in a different way. ```sh $ export CLICOLOR=0 $ cb cp "In the 1990s, though, several innovative musicians reinvigorated bachata by using electric guitars with fancy effects." ```




Need Help?

We're here for you! Check out the Clipboard Project Wiki for even more information, ask all your burning questions in GitHub Discussions, or join the awesome Discord group!

CB Wiki Questions? Ask Away! Follow us on Twitter
Discord Chat



Thank You!

Say thank you to all our beautiful contributors who have helped make the Clipboard Project incredible. Want to join the club? We're always accepting new contributions too.

Special thanks to MacStadium for sponsoring the Clipboard Project by providing a Mac Mini for macOS development!

And if you're feeling generous, feel free to give us a :star:! We appreciate every single one - including yours.


CB makes your life easy.


cb copy haters && cb > /dev/null