feat: adds helper script for raycast
This commit is contained in:
parent
86c919450c
commit
0c29416353
1 changed files with 18 additions and 0 deletions
18
modules/raycast/scripts/add-to-inbox.sh
Executable file
18
modules/raycast/scripts/add-to-inbox.sh
Executable file
|
|
@ -0,0 +1,18 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Required parameters:
|
||||||
|
# @raycast.schemaVersion 1
|
||||||
|
# @raycast.title Add to Inbox
|
||||||
|
# @raycast.mode silent
|
||||||
|
|
||||||
|
# Optional parameters:
|
||||||
|
# @raycast.icon 🤖
|
||||||
|
# @raycast.argument1 { "type": "text", "placeholder": "Placeholder" }
|
||||||
|
|
||||||
|
# Documentation:
|
||||||
|
# @raycast.description Adds a task to my org inbox
|
||||||
|
# @raycast.author dnsc
|
||||||
|
# @raycast.authorURL https://raycast.com/dnsc
|
||||||
|
|
||||||
|
emacsclient -e "(dnsc/add-to-inbox \"* TODO $1\n\")"
|
||||||
|
echo "Added new task to inbox"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue