feat: initial deployment of raycast core automation tools

This commit is contained in:
2026-05-15 23:06:25 -04:00
commit 99fe36b767
26 changed files with 723 additions and 0 deletions
Executable
+22
View File
@@ -0,0 +1,22 @@
#!/bin/bash
# @raycast.schemaVersion 1
# @raycast.title Load Window Layout
# @raycast.mode silent
# @raycast.icon 🖥️
# @raycast.packageName Layout Selector
# @raycast.argument1 { "type": "text", "placeholder": "Layout Name" }
if [ ! -f /opt/homebrew/bin/hs ]; then
echo "Hammerspoon CLI link missing"
exit 1
fi
LAYOUT_NAME="$1"
if [ -z "$LAYOUT_NAME" ]; then
exit 1
fi
/opt/homebrew/bin/hs -c "LayoutSelector.load('${LAYOUT_NAME}')"