Skip to content

Instantly share code, notes, and snippets.

@supersational
Created December 13, 2023 13:09
Show Gist options
  • Save supersational/e3a4e2de3ba7ac9416a2bee3fa946c20 to your computer and use it in GitHub Desktop.
Save supersational/e3a4e2de3ba7ac9416a2bee3fa946c20 to your computer and use it in GitHub Desktop.

Revisions

  1. supersational created this gist Dec 13, 2023.
    13 changes: 13 additions & 0 deletions unminimise.applescript
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,13 @@
    tell application "System Events" to tell process "Dock"
    set dockUIElements to UI elements of list 1

    repeat with i from (count dockUIElements) to 1 by -1
    set anElement to item i of dockUIElements

    if ((role description of anElement) as string) is equal to "minimised window dock item" then
    click anElement

    exit repeat
    end if
    end repeat
    end tell