Created
December 13, 2023 13:09
-
-
Save supersational/e3a4e2de3ba7ac9416a2bee3fa946c20 to your computer and use it in GitHub Desktop.
Revisions
-
supersational created this gist
Dec 13, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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