Files
raycast/sh/close-all-vscode.sh

21 lines
428 B
Bash
Executable File

#!/bin/bash
# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title Close All VSCode
# @raycast.mode compact
# Optional parameters:
# @raycast.icon 🤖
# @raycast.packageName @kevisual/raycast
# Documentation:
# @raycast.description Close all VSCode windows
# @raycast.author abearxiong
# @raycast.authorURL https://raycast.com/abearxiong
osascript <<EOF
tell application "Visual Studio Code"
quit
end tell
EOF