添加脚本以在 iTerm 中打开 Finder 当前路径

This commit is contained in:
2026-04-15 10:31:27 +08:00
parent b8fbf1e24c
commit ad27c0cc94
2 changed files with 76 additions and 0 deletions

21
sh/close-all-vscode.sh Executable file
View File

@@ -0,0 +1,21 @@
#!/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