Class names are CamelCase.
Methods and variables are snake_case.
Methods with a ? suffix will return a boolean.
| #!/usr/bin/osascript | |
| # | |
| # now_playing.osascript | |
| # | |
| # Osascript to fetch the meta data of the currently playing | |
| # track in Spotify. This works only on Mac OS X. | |
| tell application "System Events" | |
| set myList to (name of every process) | |
| end tell |