Files
raycast-scripts/select-layout-menu.sh
T

16 lines
353 B
Bash
Executable File

#!/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()"