Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save PaulCapestany/2950785 to your computer and use it in GitHub Desktop.
Save PaulCapestany/2950785 to your computer and use it in GitHub Desktop.
Useful Alfred Extensions for Spotify (AppleScript)
# Spotify Next
tell application "Spotify"
next track
end tell
# Spotify Pause
tell application "Spotify"
pause
end tell
# Spotify Play
tell application "Spotify"
play
end tell
# Spotify Previous
tell application "Spotify"
previous track
end tell
# Spotify Volume (1-100%)
tell application "Spotify"
set sound volume to 100
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment