A clipboard manager for the COSMIC desktop environment. Clipbro runs as a background daemon, keeps a history of everything you copy, and shows a card-based overlay when you need to find something.
- Card-based overlay with image previews and syntax-highlighted code
- Favorites pin entries so they survive clears and deletions. Toggle with Ctrl+F or click the star on any card. Favorited cards get a gold border and filled star
- Quick select with Ctrl+1..9 to instantly copy the entry at that position. Index badges shown on each card
- Type filtering with Tab/Shift+Tab to cycle through: Favorites, Text, Images, URLs, and detected code languages (Rust, JSON, Python, etc.)
- Open URLs in browser with Ctrl+Enter or Ctrl+Click on URL entries (configurable)
- Pause clipboard monitoring with Ctrl+P or
clipbro pauseto temporarily stop recording. Amber PAUSED badge shown in overlay - Syntax highlighting for 200+ languages including Rust, Python, Go, JavaScript, TypeScript, TOML, YAML, JSON, Dockerfile, Bash, SQL, CSS, Markdown, and more
- Language detection identifies what you copied and labels each card (e.g., "Python", "TOML", "JSON")
- Image thumbnails for copied images and optionally for image URLs
- Multi-term search across content, language, and type. Type
python htmxto find Python entries containing "htmx". Typeimageto filter to images only - Instant search starts filtering as you type, no need to click the search box
- Delete entries with the Delete key. Favorites are protected and cannot be deleted
- Configurable hotkeys for favorite toggle, entry deletion, and pause
- Clipboard and primary selection sync keeps both buffers in sync
- Encrypted database with SQLCipher, key stored in your system keyring
- Configurable overlay position at the top, bottom, left, or right edge of your screen
- Configurable database path to store the database wherever you want
- COSMIC theme support matches your system dark/light mode
- systemd integration for starting on login
- COSMIC desktop environment
- Rust toolchain (install from rustup.rs)
wl-clipboard(wl-copyandwl-paste)- A secret service provider (GNOME Keyring, KDE Wallet, or oo7) for database encryption
On Fedora:
sudo dnf install wl-clipboardOn Ubuntu/Debian:
sudo apt install wl-clipboardcargo install --git https://github.com/jdoss/clipbroInitialize the config file and database:
clipbro initThis creates:
~/.config/clipbro/config.tomlwith commented defaults~/.config/clipbro/clipbro.db(encrypted by default)
Install and enable the systemd user service:
clipbro installStart the service:
clipbro startClipbro is now running in the background and recording your clipboard history.
Add a keyboard shortcut in COSMIC Settings that runs:
clipbro toggleThis opens and closes the overlay.
| Key | Action |
|---|---|
| Arrow keys | Navigate between cards |
| Type | Search and filter cards instantly |
| Backspace | Edit your search |
| Tab | Cycle type filter (Favorites → Text → Images → URLs → languages → All) |
| Shift+Tab | Cycle type filter in reverse |
| Key | Action |
|---|---|
| Enter | Select focused card and copy to clipboard |
| Escape | Close overlay without changing clipboard |
| Click | Select a card directly |
| Ctrl+1..9 | Select entry by index position |
| Ctrl+Enter | Open focused URL in default browser |
| Ctrl+Click | Open clicked URL in default browser |
| Key | Action |
|---|---|
| Ctrl+F | Toggle favorite on focused card |
| Ctrl+P | Toggle pause on clipboard monitoring |
| Delete | Remove focused card (favorites are protected) |
| Click star | Toggle favorite on any card |
Clicking outside the overlay or losing focus selects the focused card.
Edit ~/.config/clipbro/config.toml:
# Maximum number of clipboard entries to keep
max_entries = 100
# Sync clipboard and primary selection
sync_selections = true
# Encrypt the database using the system keyring
encrypt_db = true
# Show image thumbnails in the overlay
show_thumbnails = true
# Fetch and cache thumbnails for image URLs
show_remote_thumbnails = false
# Maximum size in bytes for remote thumbnail downloads (5 MB)
max_thumbnail_bytes = 5242880
# Overlay position: "top", "bottom", "left", "right"
position = "top"
# Open URL entries in default browser with Ctrl+Enter or Ctrl+Click
open_links_in_browser = true
# Custom database path (default: ~/.config/clipbro/clipbro.db)
# db_path = "/path/to/clipbro.db"
[hotkeys]
# Toggle favorite on the focused entry
toggle_favorite = "ctrl+f"
# Delete the focused entry (favorites are protected)
delete_entry = "delete"
# Toggle pause on clipboard monitoring
pause = "ctrl+p"The position setting controls where the overlay appears and how cards are arranged:
| Position | Layout | Navigation |
|---|---|---|
top |
Horizontal cards along the top edge | Arrow Left/Right |
bottom |
Horizontal cards along the bottom edge | Arrow Left/Right |
left |
Vertical cards along the left edge | Arrow Up/Down |
right |
Vertical cards along the right edge | Arrow Up/Down |
In horizontal mode (top/bottom), the search bar is centered and fixed-width for comfortable use on ultrawide monitors.
Set show_remote_thumbnails = true to automatically fetch and cache thumbnail previews for image URLs you copy. Thumbnails are stored in the database so they only get downloaded once. The max_thumbnail_bytes setting limits how large a remote image can be before it's skipped.
The [hotkeys] section lets you rebind overlay keyboard shortcuts. Values are modifier+key strings like "ctrl+f", "alt+d", or "delete". Supported modifiers: ctrl, alt, shift. Hotkeys match on the logical key, so remapped keyboard layouts (Colemak, Dvorak, etc.) work correctly.
By default, the clipboard database is encrypted with SQLCipher. The encryption key is stored in your system keyring. If you don't have a secret service provider running, either install one or set encrypt_db = false.
clipbro Start the daemon (foreground)
clipbro init Create default config and database
clipbro install Install and enable systemd user service
clipbro start Start the systemd service
clipbro stop Stop the systemd service
clipbro restart Restart the systemd service
clipbro status Show systemd service status
clipbro toggle Toggle the overlay (bind this to a hotkey)
clipbro show Open the overlay
clipbro hide Close the overlay
clipbro clear Delete all non-favorite clipboard entries
clipbro pause Toggle pause on clipboard monitoring
| Path | Purpose |
|---|---|
~/.config/clipbro/config.toml |
Configuration |
~/.config/clipbro/clipbro.db |
Clipboard database |
~/.local/share/clipbro/clipbro.log |
Log file |
~/.config/systemd/user/clipbro.service |
systemd unit (created by clipbro install) |
MIT. See LICENSE for details.
