Skip to content

Instantly share code, notes, and snippets.

@9ete
Created February 8, 2023 16:42
Show Gist options
  • Save 9ete/8856a8e1537ed0f6a7de76512c969791 to your computer and use it in GitHub Desktop.
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
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