feat: adds helper script for raycast

This commit is contained in:
Dennis Schoepf 2025-09-08 20:02:31 +02:00
parent 86c919450c
commit 0c29416353

View 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"