├── .editorconfig ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── Makefile ├── README.md ├── _remote ├── images │ ├── items │ │ ├── 3277740D-DEEE-4C08-8B1D-E7B962742990.png │ │ ├── 3A89A720-DC62-42BE-9FB6-2BFEA717BCE9.png │ │ ├── 5A4E8FCB-5384-41CC-8B7C-97A263163633.png │ │ ├── 9AF9D5D1-FA74-4419-9B9C-C075BEC1AD75.png │ │ ├── B476C144-0CAF-4BC7-8609-BD97EBFCCF3F.png │ │ └── D113E787-2890-471A-B3E8-126F562439DC.png │ └── pages │ │ └── 396A6C7D-DEF5-4580-8F15-927EFB5D6BFC.png └── pages │ ├── BF8D740B-C9D0-4622-8695-FC0CCA97B37F.data │ └── pages.data ├── action.php ├── callback.php ├── composer.json ├── composer.lock ├── dist └── Spotifious.alfredworkflow ├── doc └── spec.md ├── icon.png ├── include ├── images │ ├── album.png │ ├── artist.png │ ├── checked.png │ ├── commands │ │ ├── next.png │ │ ├── playpause.png │ │ └── previous.png │ ├── compilation.png │ ├── configuration.png │ ├── dash.png │ ├── disabled.png │ ├── error.png │ ├── folder.png │ ├── info.png │ ├── paused.png │ ├── playing.png │ ├── playlist.png │ ├── psd │ │ ├── album.psd │ │ ├── artist.psd │ │ ├── checked.psd │ │ ├── configuration.psd │ │ ├── controls │ │ │ ├── next.psd │ │ │ ├── playpause.psd │ │ │ └── previous.psd │ │ ├── dash.psd │ │ ├── disabled.psd │ │ ├── error.psd │ │ ├── folder.psd │ │ ├── info.psd │ │ ├── paused.psd │ │ ├── playing.psd │ │ ├── playlist.psd │ │ ├── remote │ │ │ ├── next.psd │ │ │ ├── playpause.psd │ │ │ ├── previous.psd │ │ │ ├── search.psd │ │ │ ├── voldown.svg │ │ │ └── volup.svg │ │ ├── search.psd │ │ ├── track.psd │ │ └── unchecked.psd │ ├── remote │ │ ├── next.png │ │ ├── playpause.png │ │ ├── previous.png │ │ ├── search.png │ │ ├── voldown.png │ │ └── volup.png │ ├── search.png │ ├── single.png │ ├── track.png │ └── unchecked.png ├── normalize ├── screenshots │ ├── compilation.png │ ├── compilation.psd │ ├── compilation_small.png │ ├── controls.png │ ├── hero_shot.png │ ├── install.png │ ├── install.psd │ ├── loading.png │ ├── main_menu.png │ └── settings.png ├── setup │ ├── client_submit.php │ ├── img │ │ ├── client_info.png │ │ ├── create_an_app_button.png │ │ ├── create_an_app_name.png │ │ ├── redirect.png │ │ └── save.png │ ├── index.php │ ├── link.php │ └── style │ │ ├── normalize.css │ │ └── style.css └── terminal-notifier.app │ ├── Contents │ ├── Info.plist │ ├── MacOS │ │ └── terminal-notifier │ ├── PkgInfo │ └── Resources │ │ ├── Spotify.icns │ │ └── en.lproj │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ └── MainMenu.nib │ └── Icon ├── info.plist ├── main.php ├── script ├── check_version.php └── travis_install.sh ├── spotifious.sublime-project └── src └── citelao ├── OhAlfred ├── Applescript │ ├── Applescript.php │ └── ApplicationApplescript.php ├── Command │ ├── Command.php │ └── Timeout.php ├── Exceptions │ ├── IStatefulException.php │ └── StatefulException.php ├── HTTP │ ├── Fetcher.php │ ├── JsonFetcher.php │ └── JsonParser.php └── OhAlfred.php └── Spotifious ├── Actions ├── Applescript.php └── IAction.php ├── Menus ├── Control.php ├── Detail.php ├── DetailAlbum.php ├── DetailArtist.php ├── DetailPlaylist.php ├── Helper.php ├── Main.php ├── Menu.php ├── Search.php ├── Settings.php ├── Setup.php └── SetupCountryCode.php └── Spotifious.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/README.md -------------------------------------------------------------------------------- /_remote/images/items/3277740D-DEEE-4C08-8B1D-E7B962742990.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/_remote/images/items/3277740D-DEEE-4C08-8B1D-E7B962742990.png -------------------------------------------------------------------------------- /_remote/images/items/3A89A720-DC62-42BE-9FB6-2BFEA717BCE9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/_remote/images/items/3A89A720-DC62-42BE-9FB6-2BFEA717BCE9.png -------------------------------------------------------------------------------- /_remote/images/items/5A4E8FCB-5384-41CC-8B7C-97A263163633.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/_remote/images/items/5A4E8FCB-5384-41CC-8B7C-97A263163633.png -------------------------------------------------------------------------------- /_remote/images/items/9AF9D5D1-FA74-4419-9B9C-C075BEC1AD75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/_remote/images/items/9AF9D5D1-FA74-4419-9B9C-C075BEC1AD75.png -------------------------------------------------------------------------------- /_remote/images/items/B476C144-0CAF-4BC7-8609-BD97EBFCCF3F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/_remote/images/items/B476C144-0CAF-4BC7-8609-BD97EBFCCF3F.png -------------------------------------------------------------------------------- /_remote/images/items/D113E787-2890-471A-B3E8-126F562439DC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/_remote/images/items/D113E787-2890-471A-B3E8-126F562439DC.png -------------------------------------------------------------------------------- /_remote/images/pages/396A6C7D-DEF5-4580-8F15-927EFB5D6BFC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/_remote/images/pages/396A6C7D-DEF5-4580-8F15-927EFB5D6BFC.png -------------------------------------------------------------------------------- /_remote/pages/BF8D740B-C9D0-4622-8695-FC0CCA97B37F.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/_remote/pages/BF8D740B-C9D0-4622-8695-FC0CCA97B37F.data -------------------------------------------------------------------------------- /_remote/pages/pages.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/_remote/pages/pages.data -------------------------------------------------------------------------------- /action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/action.php -------------------------------------------------------------------------------- /callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/callback.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/composer.lock -------------------------------------------------------------------------------- /dist/Spotifious.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/dist/Spotifious.alfredworkflow -------------------------------------------------------------------------------- /doc/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/doc/spec.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/icon.png -------------------------------------------------------------------------------- /include/images/album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/album.png -------------------------------------------------------------------------------- /include/images/artist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/artist.png -------------------------------------------------------------------------------- /include/images/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/checked.png -------------------------------------------------------------------------------- /include/images/commands/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/commands/next.png -------------------------------------------------------------------------------- /include/images/commands/playpause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/commands/playpause.png -------------------------------------------------------------------------------- /include/images/commands/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/commands/previous.png -------------------------------------------------------------------------------- /include/images/compilation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/compilation.png -------------------------------------------------------------------------------- /include/images/configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/configuration.png -------------------------------------------------------------------------------- /include/images/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/dash.png -------------------------------------------------------------------------------- /include/images/disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/disabled.png -------------------------------------------------------------------------------- /include/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/error.png -------------------------------------------------------------------------------- /include/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/folder.png -------------------------------------------------------------------------------- /include/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/info.png -------------------------------------------------------------------------------- /include/images/paused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/paused.png -------------------------------------------------------------------------------- /include/images/playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/playing.png -------------------------------------------------------------------------------- /include/images/playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/playlist.png -------------------------------------------------------------------------------- /include/images/psd/album.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/album.psd -------------------------------------------------------------------------------- /include/images/psd/artist.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/artist.psd -------------------------------------------------------------------------------- /include/images/psd/checked.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/checked.psd -------------------------------------------------------------------------------- /include/images/psd/configuration.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/configuration.psd -------------------------------------------------------------------------------- /include/images/psd/controls/next.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/controls/next.psd -------------------------------------------------------------------------------- /include/images/psd/controls/playpause.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/controls/playpause.psd -------------------------------------------------------------------------------- /include/images/psd/controls/previous.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/controls/previous.psd -------------------------------------------------------------------------------- /include/images/psd/dash.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/dash.psd -------------------------------------------------------------------------------- /include/images/psd/disabled.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/disabled.psd -------------------------------------------------------------------------------- /include/images/psd/error.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/error.psd -------------------------------------------------------------------------------- /include/images/psd/folder.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/folder.psd -------------------------------------------------------------------------------- /include/images/psd/info.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/info.psd -------------------------------------------------------------------------------- /include/images/psd/paused.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/paused.psd -------------------------------------------------------------------------------- /include/images/psd/playing.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/playing.psd -------------------------------------------------------------------------------- /include/images/psd/playlist.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/playlist.psd -------------------------------------------------------------------------------- /include/images/psd/remote/next.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/remote/next.psd -------------------------------------------------------------------------------- /include/images/psd/remote/playpause.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/remote/playpause.psd -------------------------------------------------------------------------------- /include/images/psd/remote/previous.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/remote/previous.psd -------------------------------------------------------------------------------- /include/images/psd/remote/search.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/remote/search.psd -------------------------------------------------------------------------------- /include/images/psd/remote/voldown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/remote/voldown.svg -------------------------------------------------------------------------------- /include/images/psd/remote/volup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/remote/volup.svg -------------------------------------------------------------------------------- /include/images/psd/search.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/search.psd -------------------------------------------------------------------------------- /include/images/psd/track.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/track.psd -------------------------------------------------------------------------------- /include/images/psd/unchecked.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/psd/unchecked.psd -------------------------------------------------------------------------------- /include/images/remote/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/remote/next.png -------------------------------------------------------------------------------- /include/images/remote/playpause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/remote/playpause.png -------------------------------------------------------------------------------- /include/images/remote/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/remote/previous.png -------------------------------------------------------------------------------- /include/images/remote/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/remote/search.png -------------------------------------------------------------------------------- /include/images/remote/voldown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/remote/voldown.png -------------------------------------------------------------------------------- /include/images/remote/volup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/remote/volup.png -------------------------------------------------------------------------------- /include/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/search.png -------------------------------------------------------------------------------- /include/images/single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/single.png -------------------------------------------------------------------------------- /include/images/track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/track.png -------------------------------------------------------------------------------- /include/images/unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/images/unchecked.png -------------------------------------------------------------------------------- /include/normalize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/normalize -------------------------------------------------------------------------------- /include/screenshots/compilation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/screenshots/compilation.png -------------------------------------------------------------------------------- /include/screenshots/compilation.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/screenshots/compilation.psd -------------------------------------------------------------------------------- /include/screenshots/compilation_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/screenshots/compilation_small.png -------------------------------------------------------------------------------- /include/screenshots/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/screenshots/controls.png -------------------------------------------------------------------------------- /include/screenshots/hero_shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/screenshots/hero_shot.png -------------------------------------------------------------------------------- /include/screenshots/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/screenshots/install.png -------------------------------------------------------------------------------- /include/screenshots/install.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/screenshots/install.psd -------------------------------------------------------------------------------- /include/screenshots/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/screenshots/loading.png -------------------------------------------------------------------------------- /include/screenshots/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/screenshots/main_menu.png -------------------------------------------------------------------------------- /include/screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/screenshots/settings.png -------------------------------------------------------------------------------- /include/setup/client_submit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/setup/client_submit.php -------------------------------------------------------------------------------- /include/setup/img/client_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/setup/img/client_info.png -------------------------------------------------------------------------------- /include/setup/img/create_an_app_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/setup/img/create_an_app_button.png -------------------------------------------------------------------------------- /include/setup/img/create_an_app_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/setup/img/create_an_app_name.png -------------------------------------------------------------------------------- /include/setup/img/redirect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/setup/img/redirect.png -------------------------------------------------------------------------------- /include/setup/img/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/setup/img/save.png -------------------------------------------------------------------------------- /include/setup/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/setup/index.php -------------------------------------------------------------------------------- /include/setup/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/setup/link.php -------------------------------------------------------------------------------- /include/setup/style/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/setup/style/normalize.css -------------------------------------------------------------------------------- /include/setup/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/setup/style/style.css -------------------------------------------------------------------------------- /include/terminal-notifier.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/terminal-notifier.app/Contents/Info.plist -------------------------------------------------------------------------------- /include/terminal-notifier.app/Contents/MacOS/terminal-notifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/terminal-notifier.app/Contents/MacOS/terminal-notifier -------------------------------------------------------------------------------- /include/terminal-notifier.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /include/terminal-notifier.app/Contents/Resources/Spotify.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/terminal-notifier.app/Contents/Resources/Spotify.icns -------------------------------------------------------------------------------- /include/terminal-notifier.app/Contents/Resources/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/terminal-notifier.app/Contents/Resources/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /include/terminal-notifier.app/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/terminal-notifier.app/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /include/terminal-notifier.app/Contents/Resources/en.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/include/terminal-notifier.app/Contents/Resources/en.lproj/MainMenu.nib -------------------------------------------------------------------------------- /include/terminal-notifier.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/info.plist -------------------------------------------------------------------------------- /main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/main.php -------------------------------------------------------------------------------- /script/check_version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/script/check_version.php -------------------------------------------------------------------------------- /script/travis_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/script/travis_install.sh -------------------------------------------------------------------------------- /spotifious.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/spotifious.sublime-project -------------------------------------------------------------------------------- /src/citelao/OhAlfred/Applescript/Applescript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/OhAlfred/Applescript/Applescript.php -------------------------------------------------------------------------------- /src/citelao/OhAlfred/Applescript/ApplicationApplescript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/OhAlfred/Applescript/ApplicationApplescript.php -------------------------------------------------------------------------------- /src/citelao/OhAlfred/Command/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/OhAlfred/Command/Command.php -------------------------------------------------------------------------------- /src/citelao/OhAlfred/Command/Timeout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/OhAlfred/Command/Timeout.php -------------------------------------------------------------------------------- /src/citelao/OhAlfred/Exceptions/IStatefulException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/OhAlfred/Exceptions/IStatefulException.php -------------------------------------------------------------------------------- /src/citelao/OhAlfred/Exceptions/StatefulException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/OhAlfred/Exceptions/StatefulException.php -------------------------------------------------------------------------------- /src/citelao/OhAlfred/HTTP/Fetcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/OhAlfred/HTTP/Fetcher.php -------------------------------------------------------------------------------- /src/citelao/OhAlfred/HTTP/JsonFetcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/OhAlfred/HTTP/JsonFetcher.php -------------------------------------------------------------------------------- /src/citelao/OhAlfred/HTTP/JsonParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/OhAlfred/HTTP/JsonParser.php -------------------------------------------------------------------------------- /src/citelao/OhAlfred/OhAlfred.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/OhAlfred/OhAlfred.php -------------------------------------------------------------------------------- /src/citelao/Spotifious/Actions/Applescript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/Spotifious/Actions/Applescript.php -------------------------------------------------------------------------------- /src/citelao/Spotifious/Actions/IAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/Spotifious/Actions/IAction.php -------------------------------------------------------------------------------- /src/citelao/Spotifious/Menus/Control.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/Spotifious/Menus/Control.php -------------------------------------------------------------------------------- /src/citelao/Spotifious/Menus/Detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/Spotifious/Menus/Detail.php -------------------------------------------------------------------------------- /src/citelao/Spotifious/Menus/DetailAlbum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/Spotifious/Menus/DetailAlbum.php -------------------------------------------------------------------------------- /src/citelao/Spotifious/Menus/DetailArtist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/Spotifious/Menus/DetailArtist.php -------------------------------------------------------------------------------- /src/citelao/Spotifious/Menus/DetailPlaylist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/Spotifious/Menus/DetailPlaylist.php -------------------------------------------------------------------------------- /src/citelao/Spotifious/Menus/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/Spotifious/Menus/Helper.php -------------------------------------------------------------------------------- /src/citelao/Spotifious/Menus/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/Spotifious/Menus/Main.php -------------------------------------------------------------------------------- /src/citelao/Spotifious/Menus/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/Spotifious/Menus/Menu.php -------------------------------------------------------------------------------- /src/citelao/Spotifious/Menus/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/Spotifious/Menus/Search.php -------------------------------------------------------------------------------- /src/citelao/Spotifious/Menus/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/Spotifious/Menus/Settings.php -------------------------------------------------------------------------------- /src/citelao/Spotifious/Menus/Setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/Spotifious/Menus/Setup.php -------------------------------------------------------------------------------- /src/citelao/Spotifious/Menus/SetupCountryCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/Spotifious/Menus/SetupCountryCode.php -------------------------------------------------------------------------------- /src/citelao/Spotifious/Spotifious.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citelao/Spotify-for-Alfred/HEAD/src/citelao/Spotifious/Spotifious.php --------------------------------------------------------------------------------