Skip to content

kmikiy/SpotifyAppleScript

Repository files navigation

SpotifyAppleScript

A Spotify wrapper class for controlling Spotify on macOS.

This wrapper class was originally created for SpotMenu.

Installation

To integrate Spotify into your Xcode project using CocoaPods, specify it in your Podfile:

platform :osx, '10.10'
use_frameworks!

target '<Your Target Name>' do
    pod 'SpotifyAppleScript', '~> 0.3'
end

Then, run the following command:

$ pod install

Usage example

import SpotifyAppleScript


// Get current artist
if let artist = SpotifyAppleScript.currentTrack.artist {
    print(artist)
}

// Get current track title
if let title = SpotifyAppleScript.currentTrack.title {
    print(title)
}

// Play next song
SpotifyAppleScript.playNext()

For a real-world example checkout SpotMenu

About

A Spotify wrapper class for controlling Spotify on macOS

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •