├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── excavator.yml │ ├── issues.yml │ ├── pull_request_comments.yml │ └── pull_requests.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── Scoop-Bucket.Tests.ps1 ├── appveyor.yml ├── basic-setup.ps1 ├── bin ├── auto-pr.ps1 ├── checkurls.ps1 ├── checkver.ps1 ├── formatjson.ps1 ├── missing-checkver.ps1 └── test.ps1 ├── bucket ├── blockthespot.json ├── genius-spicetify.json ├── google-spicetify.json ├── spicetify-autovolume.json ├── spicetify-cli.json ├── spicetify-jqbx.json ├── spicetify-themes.json ├── spotify-latest.json ├── spotify-tui.json └── spotify-with-blockthespot.json └── scripts ├── blockthespot.ps1 ├── get-spotify-path.ps1 ├── init-spicetify-config-and-apply.ps1 ├── init-spicetify-config.ps1 ├── spicetify-apply.ps1 ├── spicetify-disable-devtool.ps1 └── spicetify-enable-devtool.ps1 /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=crlf 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: therandomlabs 2 | -------------------------------------------------------------------------------- /.github/workflows/excavator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/.github/workflows/excavator.yml -------------------------------------------------------------------------------- /.github/workflows/issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/.github/workflows/issues.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request_comments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/.github/workflows/pull_request_comments.yml -------------------------------------------------------------------------------- /.github/workflows/pull_requests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/.github/workflows/pull_requests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/README.md -------------------------------------------------------------------------------- /Scoop-Bucket.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/Scoop-Bucket.Tests.ps1 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/appveyor.yml -------------------------------------------------------------------------------- /basic-setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/basic-setup.ps1 -------------------------------------------------------------------------------- /bin/auto-pr.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/bin/auto-pr.ps1 -------------------------------------------------------------------------------- /bin/checkurls.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/bin/checkurls.ps1 -------------------------------------------------------------------------------- /bin/checkver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/bin/checkver.ps1 -------------------------------------------------------------------------------- /bin/formatjson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/bin/formatjson.ps1 -------------------------------------------------------------------------------- /bin/missing-checkver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/bin/missing-checkver.ps1 -------------------------------------------------------------------------------- /bin/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/bin/test.ps1 -------------------------------------------------------------------------------- /bucket/blockthespot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/bucket/blockthespot.json -------------------------------------------------------------------------------- /bucket/genius-spicetify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/bucket/genius-spicetify.json -------------------------------------------------------------------------------- /bucket/google-spicetify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/bucket/google-spicetify.json -------------------------------------------------------------------------------- /bucket/spicetify-autovolume.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/bucket/spicetify-autovolume.json -------------------------------------------------------------------------------- /bucket/spicetify-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/bucket/spicetify-cli.json -------------------------------------------------------------------------------- /bucket/spicetify-jqbx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/bucket/spicetify-jqbx.json -------------------------------------------------------------------------------- /bucket/spicetify-themes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/bucket/spicetify-themes.json -------------------------------------------------------------------------------- /bucket/spotify-latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/bucket/spotify-latest.json -------------------------------------------------------------------------------- /bucket/spotify-tui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/bucket/spotify-tui.json -------------------------------------------------------------------------------- /bucket/spotify-with-blockthespot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/bucket/spotify-with-blockthespot.json -------------------------------------------------------------------------------- /scripts/blockthespot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/scripts/blockthespot.ps1 -------------------------------------------------------------------------------- /scripts/get-spotify-path.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/scripts/get-spotify-path.ps1 -------------------------------------------------------------------------------- /scripts/init-spicetify-config-and-apply.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/scripts/init-spicetify-config-and-apply.ps1 -------------------------------------------------------------------------------- /scripts/init-spicetify-config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/scripts/init-spicetify-config.ps1 -------------------------------------------------------------------------------- /scripts/spicetify-apply.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/scripts/spicetify-apply.ps1 -------------------------------------------------------------------------------- /scripts/spicetify-disable-devtool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/scripts/spicetify-disable-devtool.ps1 -------------------------------------------------------------------------------- /scripts/spicetify-enable-devtool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Spotify/HEAD/scripts/spicetify-enable-devtool.ps1 --------------------------------------------------------------------------------