├── .gitignore ├── LICENSE ├── README.md ├── SpotifyRemote.sln └── SpotifyRemote ├── CommandNextTrack.cs ├── CommandOpenSettings.cs ├── CommandOpenSpotify.cs ├── CommandOpenSpotifyPackage.cs ├── CommandOpenSpotifyPackage.vsct ├── CommandPlayPause.cs ├── CommandPreviousTrack.cs ├── Key.snk ├── LICENSE.txt ├── Properties └── AssemblyInfo.cs ├── Resources ├── CommandOpenSettings.png ├── CommandOpenSpotify.png ├── CommandOpenSpotifyPackage.ico ├── SpotifyRemoteLogo.png ├── SpotifyRemoteSettingsCommand.png └── ToolWindow1Command.png ├── SettingsManager.cs ├── SpotifyManager.cs ├── SpotifyRemote.csproj ├── SpotifyRemoteLogo.png ├── SpotifyRemoteSettings.cs ├── SpotifyRemoteSettingsCommand.cs ├── SpotifyRemoteSettingsControl.xaml ├── SpotifyRemoteSettingsControl.xaml.cs ├── ThemeHelper.cs ├── TrackChangeAnimator.cs ├── Triggers.Designer.cs ├── Triggers.settings ├── UserSettings.Designer.cs ├── UserSettings.settings ├── VSPackage.resx ├── app.config ├── deps ├── Newtonsoft.Json.dll ├── Newtonsoft.Json.xml ├── SpotifyAPI.XML ├── SpotifyAPI.dll └── SpotifyAPI.dll.config ├── docs ├── Enable_toolbar1.png ├── Enable_toolbar2.png ├── Enable_toolbar3.png ├── enable_tb_from_view.png └── screenshot.png ├── packages.config ├── screenshot.png └── source.extension.vsixmanifest /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/README.md -------------------------------------------------------------------------------- /SpotifyRemote.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote.sln -------------------------------------------------------------------------------- /SpotifyRemote/CommandNextTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/CommandNextTrack.cs -------------------------------------------------------------------------------- /SpotifyRemote/CommandOpenSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/CommandOpenSettings.cs -------------------------------------------------------------------------------- /SpotifyRemote/CommandOpenSpotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/CommandOpenSpotify.cs -------------------------------------------------------------------------------- /SpotifyRemote/CommandOpenSpotifyPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/CommandOpenSpotifyPackage.cs -------------------------------------------------------------------------------- /SpotifyRemote/CommandOpenSpotifyPackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/CommandOpenSpotifyPackage.vsct -------------------------------------------------------------------------------- /SpotifyRemote/CommandPlayPause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/CommandPlayPause.cs -------------------------------------------------------------------------------- /SpotifyRemote/CommandPreviousTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/CommandPreviousTrack.cs -------------------------------------------------------------------------------- /SpotifyRemote/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/Key.snk -------------------------------------------------------------------------------- /SpotifyRemote/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/LICENSE.txt -------------------------------------------------------------------------------- /SpotifyRemote/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SpotifyRemote/Resources/CommandOpenSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/Resources/CommandOpenSettings.png -------------------------------------------------------------------------------- /SpotifyRemote/Resources/CommandOpenSpotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/Resources/CommandOpenSpotify.png -------------------------------------------------------------------------------- /SpotifyRemote/Resources/CommandOpenSpotifyPackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/Resources/CommandOpenSpotifyPackage.ico -------------------------------------------------------------------------------- /SpotifyRemote/Resources/SpotifyRemoteLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/Resources/SpotifyRemoteLogo.png -------------------------------------------------------------------------------- /SpotifyRemote/Resources/SpotifyRemoteSettingsCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/Resources/SpotifyRemoteSettingsCommand.png -------------------------------------------------------------------------------- /SpotifyRemote/Resources/ToolWindow1Command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/Resources/ToolWindow1Command.png -------------------------------------------------------------------------------- /SpotifyRemote/SettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/SettingsManager.cs -------------------------------------------------------------------------------- /SpotifyRemote/SpotifyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/SpotifyManager.cs -------------------------------------------------------------------------------- /SpotifyRemote/SpotifyRemote.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/SpotifyRemote.csproj -------------------------------------------------------------------------------- /SpotifyRemote/SpotifyRemoteLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/SpotifyRemoteLogo.png -------------------------------------------------------------------------------- /SpotifyRemote/SpotifyRemoteSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/SpotifyRemoteSettings.cs -------------------------------------------------------------------------------- /SpotifyRemote/SpotifyRemoteSettingsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/SpotifyRemoteSettingsCommand.cs -------------------------------------------------------------------------------- /SpotifyRemote/SpotifyRemoteSettingsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/SpotifyRemoteSettingsControl.xaml -------------------------------------------------------------------------------- /SpotifyRemote/SpotifyRemoteSettingsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/SpotifyRemoteSettingsControl.xaml.cs -------------------------------------------------------------------------------- /SpotifyRemote/ThemeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/ThemeHelper.cs -------------------------------------------------------------------------------- /SpotifyRemote/TrackChangeAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/TrackChangeAnimator.cs -------------------------------------------------------------------------------- /SpotifyRemote/Triggers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/Triggers.Designer.cs -------------------------------------------------------------------------------- /SpotifyRemote/Triggers.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/Triggers.settings -------------------------------------------------------------------------------- /SpotifyRemote/UserSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/UserSettings.Designer.cs -------------------------------------------------------------------------------- /SpotifyRemote/UserSettings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/UserSettings.settings -------------------------------------------------------------------------------- /SpotifyRemote/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/VSPackage.resx -------------------------------------------------------------------------------- /SpotifyRemote/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/app.config -------------------------------------------------------------------------------- /SpotifyRemote/deps/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/deps/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /SpotifyRemote/deps/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/deps/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /SpotifyRemote/deps/SpotifyAPI.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/deps/SpotifyAPI.XML -------------------------------------------------------------------------------- /SpotifyRemote/deps/SpotifyAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/deps/SpotifyAPI.dll -------------------------------------------------------------------------------- /SpotifyRemote/deps/SpotifyAPI.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/deps/SpotifyAPI.dll.config -------------------------------------------------------------------------------- /SpotifyRemote/docs/Enable_toolbar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/docs/Enable_toolbar1.png -------------------------------------------------------------------------------- /SpotifyRemote/docs/Enable_toolbar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/docs/Enable_toolbar2.png -------------------------------------------------------------------------------- /SpotifyRemote/docs/Enable_toolbar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/docs/Enable_toolbar3.png -------------------------------------------------------------------------------- /SpotifyRemote/docs/enable_tb_from_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/docs/enable_tb_from_view.png -------------------------------------------------------------------------------- /SpotifyRemote/docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/docs/screenshot.png -------------------------------------------------------------------------------- /SpotifyRemote/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/packages.config -------------------------------------------------------------------------------- /SpotifyRemote/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/screenshot.png -------------------------------------------------------------------------------- /SpotifyRemote/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjankuijpers/SpotifyRemote/HEAD/SpotifyRemote/source.extension.vsixmanifest --------------------------------------------------------------------------------