Skip to content

Instantly share code, notes, and snippets.

@MetroWind
Created July 30, 2012 06:21
Show Gist options
  • Save MetroWind/3205298 to your computer and use it in GitHub Desktop.
Save MetroWind/3205298 to your computer and use it in GitHub Desktop.
Now Playing
tell application "iTunes"
set CurrentTrack to current track
set CurrentTitle to name of CurrentTrack
set CurrentArtist to artist of CurrentTrack
end tell
set SongInfo to {CurrentArtist, " — ", CurrentTitle} as string
set Tweet to {"#NowPlaying ", SongInfo} as string
set the clipboard to Tweet
do shell script "afplay /System/Library/Sounds/Ping.aiff"
Tweet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment