├── .gitignore ├── LICENSE.md ├── README.md ├── keymaps └── atom-spotify.cson ├── lib ├── atom-spotify-status-bar-view.coffee └── atom-spotify.coffee ├── menus └── atom-spotify.cson ├── package.json ├── spec └── atom-spotify-status-bar-view-spec.coffee └── styles └── atom-spotify.less /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/atom-spotify/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/atom-spotify/HEAD/README.md -------------------------------------------------------------------------------- /keymaps/atom-spotify.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/atom-spotify/HEAD/keymaps/atom-spotify.cson -------------------------------------------------------------------------------- /lib/atom-spotify-status-bar-view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/atom-spotify/HEAD/lib/atom-spotify-status-bar-view.coffee -------------------------------------------------------------------------------- /lib/atom-spotify.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/atom-spotify/HEAD/lib/atom-spotify.coffee -------------------------------------------------------------------------------- /menus/atom-spotify.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/atom-spotify/HEAD/menus/atom-spotify.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/atom-spotify/HEAD/package.json -------------------------------------------------------------------------------- /spec/atom-spotify-status-bar-view-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/atom-spotify/HEAD/spec/atom-spotify-status-bar-view-spec.coffee -------------------------------------------------------------------------------- /styles/atom-spotify.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/atom-spotify/HEAD/styles/atom-spotify.less --------------------------------------------------------------------------------