Skip to content

Instantly share code, notes, and snippets.

@ChristoferK
Last active August 7, 2018 22:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChristoferK/e0db9197184a25d90c8cf601fd43825e to your computer and use it in GitHub Desktop.
Save ChristoferK/e0db9197184a25d90c8cf601fd43825e to your computer and use it in GitHub Desktop.
[Minimise Background Safari Windows] Minimises all Safari windows except the one in focus. #JXA #JavaScript #Safari
windows = Application('Safari').windows()
windows.shift() // Remove front window from array
windows.map(w=>w.miniaturized = true)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment