Skip to content

Instantly share code, notes, and snippets.

@unobatbayar
Last active November 29, 2023 01:34
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 unobatbayar/2ff573d05ae3cc95ba8fbac0a1b0880e to your computer and use it in GitHub Desktop.
Save unobatbayar/2ff573d05ae3cc95ba8fbac0a1b0880e to your computer and use it in GitHub Desktop.
Skip Spotify Ad on Mac. Press as soon as you have an Ad.
-- Close Spotify
tell application "Spotify" to quit
-- Wait for Spotify to close (adjust the delay if needed)
delay 2
-- Reopen Spotify
tell application "Spotify" to activate
-- Hide Spotify
tell application "System Events"
set visible of application process "Spotify" to false
end tell
-- Play the last played track
tell application "Spotify"
playpause
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment