Manage your clipboard history with a native Windows 11 style interface
M

Manage your clipboard history with a native Windows 11 style interface

Manage your clipboard history with a native Windows 11 style interface

UICLI
858 stars
N/A forks
N/A contributors

README

Project documentation from GitHub

Bring Windows 11's Clipboard History to Linux

If you've ever worked on Windows 11, you might have gotten used to a handy little feature: pressing Win + V to bring up a visual history of everything you've copied. It's one of those quality-of-life tools that, once you use it, feels essential. On Linux, clipboard management often means relying on terminal-based tools or less-polished utilities. What if you could have that clean, native Windows 11 style clipboard manager on your Linux desktop?

That's exactly what developer Gustavo Sett has built. This project recreates the Windows 11 clipboard history interface as a fully functional Linux application. It's not a theme or a skin—it's a from-the-ground-up implementation that brings that specific workflow to a different platform.

What It Does

This is a clipboard manager for Linux that mimics the look, feel, and behavior of the Windows 11 clipboard history panel. You copy text or images as you normally would, and then trigger the history viewer (default keybind is Super + V, just like Windows). A familiar panel pops up, showing your recent clipboard items in a clean, grid-like layout. You can click any item to paste it, pin frequently used snippets to the top, or delete entries you don't need anymore.

Why It's Cool

The clever part here isn't just cloning an interface. It's the attention to detail in bringing a cohesive system feature from one OS to another. The project uses GTK for the UI, aiming to integrate nicely with GNOME-based desktops while achieving that distinct Windows 11 aesthetic. It's a practical tool that solves a real problem—keeping track of your clipboard—in a way that feels polished and intentional, not like a hacky script.

For developers, this is particularly useful. How many times have you copied a command, an error message, a configuration snippet, or a path, only to accidentally overwrite it a moment later? This manager acts as a safety net for your clipboard, letting you recover those lost items quickly. The pinning feature is great for keeping a shell command or a boilerplate code snippet instantly accessible throughout your work session.

How to Try It

The project is hosted on GitHub. Since it's a Linux application, you'll need to build it from source. The repository has clear instructions, but here's the gist:

  1. Clone the repo:

    git clone https://github.com/gustavosett/Windows-11-Clipboard-History-For-Linux.git
    cd Windows-11-Clipboard-History-For-Linux
    
  2. Build and install it. The project uses Meson and Ninja. The README outlines the standard build steps:

    meson setup build
    cd build
    ninja
    sudo ninja install
    
  3. Once installed, you c

Did you like this issue?

Join our weekly newsletter

Related Projects

Love discovering amazing projects?

Help us continue bringing you the best open-source discoveries every week.

Back to Projects
Last updated: Mar 17, 2026