Awesome-omni-skill quieter

Decrease system volume by 10% during voice chat

install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/design/quieter" ~/.claude/skills/diegosouzapw-awesome-omni-skill-quieter && rm -rf "$T"
manifest: skills/design/quieter/SKILL.md
source content

Decrease Volume

Decrease the system output volume by 10%.

Steps

  1. Check if the audio server is running (Bash):

    claude-talk server status 2>/dev/null && echo "running" || echo "stopped"
    

    If stopped, tell the user: "Audio server is not running. Start voice chat with

    /claude-talk:start
    first."

  2. Decrease volume and get new level (Bash):

    claude-talk server volume-down
    
  3. Say: "Volume decreased to [X]%"