Guest User

Untitled

a guest
Oct 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. # Spotify Next
  2. tell application "Spotify"
  3. next track
  4. end tell
  5.  
  6. # Spotify Pause
  7. tell application "Spotify"
  8. pause
  9. end tell
  10.  
  11. # Spotify Play
  12. tell application "Spotify"
  13. play
  14. end tell
  15.  
  16. # Spotify Previous
  17. tell application "Spotify"
  18. previous track
  19. end tell
  20.  
  21. # Spotify Volume (1-100%)
  22. tell application "Spotify"
  23. set sound volume to 100
  24. end tell
Add Comment
Please, Sign In to add comment