Created
December 17, 2012 20:59
-
-
Save samdmarshall/4322180 to your computer and use it in GitHub Desktop.
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
| # iTunes | |
| if isRunning("iTunes") then | |
| tell application "iTunes" | |
| if player state is playing then | |
| set my_message to do shell script "RANGE=11; number=$RANDOM ; let \"number %= $RANGE\" ; echo `sed -n \"$number\"p ~/Documents/wordlist.txt`" | |
| set nowPlaying to "/me is " & my_message & artist of current track & " - " & name of current track | |
| end if | |
| end tell | |
| end if |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment