Skip to content

Commit 72cb6ee

Browse files
committed
Add command to say things
Add command `communication/say.sh` that converts text to audible speech.
1 parent 526b328 commit 72cb6ee

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

commands/communication/say.sh

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/bash
2+
3+
# @raycast.title Say
4+
# @raycast.author Felipe Turcheti
5+
# @raycast.authorURL https://github.com/fturcheti
6+
# @raycast.description Convert text to audible speech
7+
8+
# @raycast.icon 🗣
9+
# @raycast.mode silent
10+
# @raycast.packageName Communication
11+
# @raycast.schemaVersion 1
12+
13+
# @raycast.argument1 { "type": "text", "placeholder": "Say this...", "optional": false }
14+
15+
say "$1"

0 commit comments

Comments
 (0)