添加脚本以在 iTerm 中打开 Finder 当前路径
This commit is contained in:
21
sh/close-all-vscode.sh
Executable file
21
sh/close-all-vscode.sh
Executable 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
|
||||
Reference in New Issue
Block a user