18 lines
454 B
Bash
Executable file
18 lines
454 B
Bash
Executable file
#!/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"
|