Real-time Floating Clipboard Monitor

Capture Clipboard Snippets & Images
Formatted Directly to Markdown

fancycopy is a lightweight, cross-platform floating GUI toolbar for Windows and Linux. It monitors your clipboard in real time, auto-detects code syntax, captures images, deduplicates clips, and logs formatted entries into clean Markdown documents.

PS> dev
fancycopy toolbar preview
fancycopy toolbar preview

Designed for Developer Speed

Everything you need to automate clipboard notes and documentation.

Smart Language Detection

Powered by Pygments heuristics to automatically recognize Python, JS, TS, HTML, CSS, JSON, SQL, Rust, Go, C++, Shell, and format syntax fences.

Image Clipboard & Preview

Automatically saves copied screenshots and browser images into an assets/ folder and appends inline Markdown preview tags.

Deduplication Engine

Filters out empty copies, consecutive re-copies, and session duplicate clips to keep your markdown log concise and noise-free.

Compact Floating Toolbar

Sleek dark GUI bar (#000000) designed to sit flush right above your OS taskbar with icon-only controls for zero distraction.

Position Memory

Drag the toolbar anywhere across multi-monitor setups. fancycopy remembers your exact screen coordinates on every launch.

UTF-8 Clean Logging

Writes logs with UTF-8 BOM (utf-8-sig) and sanitizes null bytes, ensuring flawless compatibility with Windows Notepad and Markdown editors.

Automated Markdown Output

Simply copy text, code, or screenshots while coding or researching. fancycopy automatically appends clean timestamps and formatting into your target clipboard_history.md file.

  • Real-time clipboard polling
  • Automatic language tagging
  • Inline screenshot image previews
  • Zero manual pasting required
# 📋 fancycopy Clipboard History

### 🕒 2026-07-23 21:15:00
```python
def calculate_sum(a, b):
    return a + b
```

### 🕒 2026-07-23 21:16:30
![Clipboard Image](assets/clip_20260723_211630.png)

Quick Start

Get up and running in seconds on Windows or Linux.

# 1. Clone repository
git clone https://github.com/dpnkrpl/fancycopy.git
cd fancycopy

# 2. Run with dev helper (automatically manages .venv & requirements)
dev

# 3. Build single-file executable (dist/fancycopy.exe)
dev build
Command copied to clipboard!