This commit is contained in:
2025-08-16 21:50:47 +08:00
parent e8f28f72d9
commit 4fc054522b
7 changed files with 127 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#!/usr/bin/osascript
# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title Minimize All Windows
# @raycast.mode silent
# Optional parameters:
# @raycast.icon images/minimize-window.png
# @raycast.packageName System
# Documentation:
# @raycast.author Ernest Ojeh
# @raycast.authorURL https://github.com/namzo
# @raycast.description This script minimizes all windows of currently running apps
tell application "System Events"
keystroke "hm" using {command down, option down}
end tell