DEV Community

Cover image for Zug zug! My Claude Code now speaks Orc
Real Name
Real Name

Posted on

Zug zug! My Claude Code now speaks Orc

You know that moment when Claude Code needs approval but you're deep in another task and miss the notification?

Here's the fix: make it play random Warcraft II Peon sounds instead.

Nothing beats hearing "Zug zug" or "We're ready, master" from your AI coding assistant. Feels exactly how it should be.

Setup in 10 seconds:

  1. /hooks in Claude Code
  2. Select "Notification"
  3. Paste: (powershell.exe -c "Get-ChildItem -Path '~\Games\Warcraft II BNE\GameSFX\Orc' -Filter '*.wav' | Get-Random | ForEach-Object { (New-Object Media.SoundPlayer $_.FullName).PlaySync() }" &> /dev/null &)
  • just swap the path to your audio folder

Top comments (0)