mirror of
https://github.com/theniceboy/.config.git
synced 2025-12-26 14:44:57 +08:00
15 lines
No EOL
306 B
Bash
Executable file
15 lines
No EOL
306 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Required parameters:
|
|
# @raycast.schemaVersion 1
|
|
# @raycast.title Stop Voice (TTS)
|
|
# @raycast.mode compact
|
|
|
|
# Optional parameters:
|
|
# @raycast.icon 🔇
|
|
# @raycast.description Stop all text-to-speech playback
|
|
|
|
# Kill all running say processes
|
|
pkill -f 'say' 2>/dev/null
|
|
|
|
echo "All TTS stopped" |