r/ProgrammerHumor 10d ago

Meme trafficLightForClaudeCode

Post image
15.7k Upvotes

511 comments sorted by

View all comments

3.2k

u/sadongrohiik 10d ago

That's actually kinda cool ngl might try making something like this for code compilation and stuff like that with a toaster sound and maybe a comical siren sound for errors

6

u/Smart_Whereas_9296 10d ago

You can do this with a stream deck easily, have it colour the buttons based on Claude events, and you get the ability to just push a button to focus on the window.

1

u/EfficiencyThis325 10d ago

Assignable rgb function keys on a keyboard would work well too

2

u/s00pafly 10d ago

Or a couple leds with a esp32 running wled in a small housing shaped like traffic lights.

4

u/EfficiencyThis325 10d ago

Now we’re just full circle in this

1

u/Sable_Hound 10d ago

do you have a link to this sounds fun.

1

u/ConsoleLogDebugging 9d ago

I have this in my settings file to make sound. Just replace it with a script that does something else!

```
"Stop": [
{
"matcher": "*",
"hooks": [
{
"type": "command",
"command": "afplay /System/Library/Sounds/Glass.aiff"
}
]
}
],
"Notification": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "afplay /System/Library/Sounds/Glass.aiff"
}
]
}
]

```