Created
December 28, 2014 07:41
-
-
Save lorentzca/a1fa45467be9eb462d3a 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
on run argv | |
tell application "iTunes" | |
set command to first item of argv | |
if command = "play" then | |
play | |
else if command = "pause" then | |
pause | |
else if command = "next" then | |
next track | |
else if command = "prev" then | |
previous track | |
else | |
return "command not found" | |
end if | |
end tell | |
end run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
$ osascript itunes_controller.scpt pauseとか