⌨️ For Software Engineers

Your Dev Dashboard Lives on Your Wallpaper

GitHub PR status, CI/CD pipelines, git logs, JWT decoders, cron parsers, and project scratch notes — always visible behind VS Code. Zero context switching. Zero subscriptions.

# Your dev dashboard, always behind your IDE
dotnet run -- dev-dashboard.csv --desktop

🔧 Dev Tools on Your Desktop

🔀

GitHub PR Status

ext: ghpr owner/repo

See open pull requests, review status, CI checks, and merge readiness for your repos. Live updates without opening a browser.

GitHub Actions Monitor

ext: gha owner/repo

Live CI/CD pipeline status — ✅❌🔄 for every workflow run. Branch, duration, and age at a glance. Never miss a failed build.

📜

Git Log

ext: gitlog /path/to/repo

Recent commits with hash, author, relative time, and message. Track what your team pushed without leaving your editor.

🔑

JWT Decoder

ext: jwtdec eyJhbG...

Paste a JWT and see header, payload, claims, and expiry decoded in cells. No more pasting into jwt.io during debugging.

🔐

Base64 Codec

ext: b64 SGVsbG8...

Encode or decode base64 strings inline. Auto-detects direction. Multi-line output for large payloads. Always at your fingertips.

Cron Expression Parser

ext: cronck */5 * * * *

Human-readable cron explanations. "Every 5 minutes" instead of staring at */5 * * * *. Validates syntax too.

🌐

URL Encoder/Decoder

ext: urlenc hello%20world

Encode or decode URL strings. Component mode, path mode, full-URI mode. UTF-8 aware. No more searching "url decode online".

🐳

Docker Container Status

ext: docker

Running containers, CPU/memory usage, port mappings, uptime. Your local Docker environment at a glance on your wallpaper.

📦

Package Lookups

ext: npm express

Check latest versions, download counts, and metadata for npm, NuGet, PyPI, crates.io, or RubyGems packages without leaving your flow.

🔥

GitHub Streak Tracker

ext: ghstreak username

Your contribution streak, today's commits, and longest streak. Motivational data on your wallpaper to keep the green squares going.

🧪

Regex Explainer

ext: regex ^[a-z]+\d{2,}$

Paste a regex, get a human-readable breakdown of every token — anchors, classes, quantifiers, groups. Debug patterns visually.

🖥️

System Monitor

ext: sysmon

CPU, RAM, disk, and uptime with visual progress bars. Know when your dev machine is thrashing before your build hangs.

📋 Example: Developer Dashboard Layout

dev-dashboard.csv — Behind your IDE all day

ABCDE
🔀 MY PRs Status 🔧 QUICK TOOLS Output
#142 Add auth middleware ✅ approved ext: jwtdec eyJhbG... exp: 2026-06-01
#139 Fix race condition 🔄 CI running ext: b64 decode → {"user":"dev"}
#135 Update deps ❌ checks failed ext: cronck 0 9 * * 1-5 Mon-Fri 9:00 AM
──────── ──── ─────────── ────
📜 RECENT COMMITS When 📝 SCRATCH PAD
abc1234 fix: null check 2 min ago TODO: review PR #142
def5678 feat: add cache 1 hr ago Bug: flaky test in auth
ghi9012 docs: update API 3 hr ago r: docker ps --format "table"

💡 Why Developers Love This

⚖️ QuickSheet vs. Other Dev Dashboards

Feature QuickSheet GitHub Desktop/Web Waybar/Polybar Notion/Obsidian
Always visible (wallpaper-level) ✓ behind all windows ✗ separate app/tab ~ bar only (1 line) ✗ separate window
Live CI/CD & PR status ✓ extensions ~ custom scripts
Dev utilities (JWT, b64, regex) ✓ built-in extensions
Scratch notes + autosave ✓ CSV autosave
Scriptable / extensible ✓ any language ✓ shell scripts ~ plugins
Zero dependencies / offline ✗ needs internet ~ sync optional
Grid layout (multi-column data) ✓ spreadsheet ✗ single bar ~ tables exist

🚀 Get Started in 3 Minutes

  1. Clone & build git clone https://github.com/cemheren/QuickSheet && cd QuickSheet && dotnet build
  2. Create your dev dashboard CSV Use the example above or start blank. Add PR extensions, dev tools, scratch notes — whatever fits your workflow.
  3. Launch as wallpaper dotnet run -- dev-dashboard.csv --desktop
    Your dashboard now lives behind VS Code, your terminal, everything. Click the desktop or Alt+Tab to peek.
  4. Code with ambient awareness CI fails? You'll see ❌ on your wallpaper. PR approved? ✅ appears. No notifications needed — just glance down.

Ship Faster with Ambient Dev Intel 🚀

Your dev environment just got an always-on dashboard — for free.

⭐ Star on GitHub