Last active
November 29, 2023 01:34
-
-
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.
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
-- 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