Nix-config cancel

Stop any currently playing text-to-speech audio

install
source · Clone the upstream repo
git clone https://github.com/malob/nix-config
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/malob/nix-config "$T" && mkdir -p ~/.claude/skills && cp -r "$T/configs/claude/plugins/tts/skills/cancel" ~/.claude/skills/malob-nix-config-cancel && rm -rf "$T"
manifest: configs/claude/plugins/tts/skills/cancel/SKILL.md
source content

Stop any currently playing TTS audio:

killall say 2>/dev/null || true

Confirm the audio has been stopped.