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
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
# @raycast.schemaVersion 1
# @raycast.title Select Layout Menu
# @raycast.mode silent
# @raycast.icon 📋
# @raycast.packageName Layout Selector
if [ ! -f /opt/homebrew/bin/hs ]; then
echo "Hammerspoon CLI link missing"
exit 1
fi
# Run the programmatic menu interface launcher
/opt/homebrew/bin/hs -c "LayoutSelector.showMenu()"