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:
-
Clone the repo:
git clone https://github.com/gustavosett/Windows-11-Clipboard-History-For-Linux.git cd Windows-11-Clipboard-History-For-Linux -
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 -
Once installed, you can run it from your application menu or set it to start automatically. The default keybinding to summon the history is
Super (Windows key) + V.
Be sure to check the project's GitHub repository for the most up-to-date dependencies and detailed build instructions, especially for your specific distribution.
Final Thoughts
As someone who jumps between operating systems, I appreciate tools that let me carry over useful workflows. This project isn't about which OS is better; it's about taking a genuinely good idea and making it available elsewhere. It's a focused, single-purpose utility that does its job well with a polished interface. If you're a Linux user who misses this particular Windows feature, or if you've just wanted a more visual clipboard manager, this is definitely worth a compile.
@githubprojects