惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
C
Check Point Blog
J
Java Code Geeks
腾讯CDC
Apple Machine Learning Research
Apple Machine Learning Research
宝玉的分享
宝玉的分享
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
量子位
Google DeepMind News
Google DeepMind News
I
InfoQ
The GitHub Blog
The GitHub Blog
aimingoo的专栏
aimingoo的专栏
N
Netflix TechBlog - Medium
Hugging Face - Blog
Hugging Face - Blog
博客园 - Franky
V
V2EX
Blog — PlanetScale
Blog — PlanetScale
T
The Blog of Author Tim Ferriss
小众软件
小众软件
博客园_首页
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
IT之家
IT之家

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - crlang44/AuroraBg
crlang44 · 2026-06-11 · via Hacker News: Show HN

Aurora — live animated background for VS Code & Antigravity

A slow, iridescent aurora shader that renders behind your code editor. It's a single self-contained file (aurora-vscode.js) — WebGL shader + the styling needed to make the editor surfaces see-through, all in one.

Aurora Live Animated Background Demo

Disclaimers: Yes this was built by AI, and no it will not make you more productive (but I think its cool nonetheless)


What you get

  • A calm, always-moving aurora behind your editor, sidebar, and panels.
  • Theme-aware: sticky scroll keeps your color theme's own colors, so pinned lines stay readable.
  • A small CONFIG block at the top of the file to tune brightness, dimming, speed, minimap, and sticky-scroll opacity.

Requirements

  • VS Code or Antigravity (any recent version).
  • The Custom CSS and JS Loader extension:
    • be5invis.vscode-custom-css (for Visual Studio Marketplace / VS Code)
    • s-h-a-d-o-w.vscode-custom-css (for Open-VSX / Antigravity)

⚠️ This works by injecting a script into the editor's UI. It's a popular but unofficial approach — read Things to know before you start.


Install

1. Install the loader extension

Open the Extensions panel and search for "Custom CSS and JS Loader"Install.

  • Visual Studio Marketplace: publisher be5invis (be5invis.vscode-custom-css)
  • Open-VSX: publisher s-h-a-d-o-w (s-h-a-d-o-w.vscode-custom-css)

2. Save the Aurora file somewhere permanent

Put aurora-vscode.js in a stable folder — e.g. ~/aurora/aurora-vscode.js. If you later move or delete it, the background disappears.

3. Point your editor at it

Open your settings JSON: Command Palette (Cmd/Ctrl+Shift+P) → "Preferences: Open User Settings (JSON)" — and add:

Path format by OS:

  • macOS / Linux: file:///absolute/path/aurora-vscode.js
  • Windows: file:///C:/Users/YOURNAME/aurora/aurora-vscode.js

4. Enable it

Command Palette → "Enable Custom CSS and JS" → click Restart when prompted.

That's it — the aurora should now be drifting behind your code.


Tuning

Open aurora-vscode.js and edit the CONFIG block at the top:

const CONFIG = {
  opacity: 0.60, // how visible the aurora is behind your code   (0 – 1)
  dim:     0.45, // extra dark scrim for text readability         (0 – 1)
  speed:   1.00, // motion speed multiplier                       (0.2 – 3)
  minimap: 0.45, // minimap translucency so aurora shows through  (0 = invisible, 1 = solid)
  sticky:  0.92, // sticky-scroll backing opacity (uses your THEME's color)
};

After any change, run Command Palette → "Reload Custom CSS and JS".

Aurora Tuning Demo

Tips

  • Hard to read your code? Raise dim or lower opacity.
  • Want the minimap fully solid again? Set minimap: 1 (or disable it in settings with "editor.minimap.enabled": false).
  • Want sticky scroll fully opaque? Set sticky: 1.
  • A dark color theme looks best, since some theme surfaces stay tinted (the preview shows the Tokyo Night Storm theme).

Things to know

This extension patches the editor's own UI files, which has a few side effects:

  • "Your installation appears corrupt" warning — expected; it just means a UI file was modified. Click the gear icon → "Don't Show Again".
  • Re-enable after every update — app updates overwrite the patch. Just run "Enable Custom CSS and JS" again.
  • Permissions (macOS/Linux) — if enabling fails, the loader extension may not have permission to modify the editor's files. Refer to the Custom CSS and JS Loader extension page/repository for instructions on resolving permissions.

Uninstall

  1. Command Palette → "Disable Custom CSS and JS".
  2. Remove the vscode_custom_css.imports entry from your settings JSON.
  3. (Optional) Uninstall the Custom CSS and JS Loader extension and delete aurora-vscode.js.

How it works (short version)

The script does two things:

  1. Makes the editor see-through — most VS Code surfaces read their background from CSS variables (e.g. --vscode-editor-background); the script blanks those, plus a handful of elements that hardcode a background. Pop-ups and sticky scroll are kept readable on purpose.
  2. Draws the aurora — a full-window WebGL <canvas> is placed behind the workbench (with a dark scrim for contrast) and runs a noise-based shader every frame. No images, no video — just math, redrawn live.