Created
February 8, 2023 16:42
-
-
Save 9ete/8856a8e1537ed0f6a7de76512c969791 to your computer and use it in GitHub Desktop.
Toggle Control Center Now Playing - add to Alfred, KeyMaestro, or Shortcuts to run via HotKey
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 characters
tell application "System Events" | |
tell process "Control Center" | |
if not (exists (group of window "Control Center")) then | |
click menu bar item "Now Playing" of menu bar 1 | |
end if | |
if exists (button "play" of group of window "Control Center") then | |
click button "play" of group of window "Control Center" | |
else | |
click button "pause" of group of window "Control Center" | |
end if | |
end tell | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment