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

推荐订阅源

L
LINUX DO - 热门话题
Stack Overflow Blog
Stack Overflow Blog
B
Blog
WordPress大学
WordPress大学
Project Zero
Project Zero
P
Palo Alto Networks Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - 司徒正美
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
小众软件
小众软件
T
Tailwind CSS Blog
Forbes - Security
Forbes - Security
F
Full Disclosure
SecWiki News
SecWiki News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hacker News: Ask HN
Hacker News: Ask HN
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
F
Fortinet All Blogs
Cisco Talos Blog
Cisco Talos Blog
G
Google Developers Blog
J
Java Code Geeks
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Recorded Future
Recorded Future
O
OpenAI News
Spread Privacy
Spread Privacy
MongoDB | Blog
MongoDB | Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
C
Cybersecurity and Infrastructure Security Agency CISA
S
Securelist
V
Vulnerabilities – Threatpost
Y
Y Combinator Blog
IT之家
IT之家
U
Unit 42
腾讯CDC
S
Security Affairs
C
Cisco Blogs
Schneier on Security
Schneier on Security
The Last Watchdog
The Last Watchdog
B
Blog RSS Feed
宝玉的分享
宝玉的分享
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
S
Security @ Cisco Blogs
Cyberwarzone
Cyberwarzone
T
The Blog of Author Tim Ferriss

seg6

concurrent device registration without redis — seg6 building a software protection system from first principles — seg6 hijacking chrome's network tab to debug an electron app — seg6 cross-origin iframes without third-party cookies — seg6 making macos bearable — seg6 hello, world! — seg6
gave my rgb fans a job: 38-pixel screen mirror — seg6
2025-12-24 · via seg6

I recently picked up a second-hand build with a Ryzen 7 7800X3D and an RTX 5070 Ti. It’s a massive upgrade for me, and I’ve been enjoying throwing heavy workloads at it.

The Setup

The case came with RGB everywhere: RAM, pump, and the fans. I wanted to do something with it other than a rainbow cycle or static color, so I wrote a Python script to mirror the screen onto the components. The idea is that blue sky at the top of the frame means the top components go blue, while lava at the bottom means the bottom fans go red.

the wiring constraint

The catch is that the fans are daisy-chained; meaning bottom intake, top exhaust, and rear exhaust all on one controller. I can’t address them individually, so if I send a color, the entire perimeter lights up at once. This means no proper pixel map is possible (at least until I fix this issue), just a best-effort layout that works around the wiring.

spatial logic

I built a simple tool to click through a grid and assign LEDs to screen coordinates. The pump samples left-center at 35% width, the RAM samples dead center around 55–65%, and the fans are mapped to the far right edge at 85%.

Even though the fans are electrically a single unit, they mostly sit on the right side of the case. Mapping them to the right edge of the screen creates a somewhat convincing flow from the CPU block outward to the exhaust.

The LED mapping tool

It turned out to be surprisingly nice-looking! I sometimes catch myself watching the case shift colors and smiling. :)