├── .github └── workflows │ └── build.yml ├── Edge ├── build.sh └── install.sh ├── README.md ├── Screenshot.png ├── Stable ├── build.sh └── install.sh └── auto-build ├── auto-edge.sh ├── auto.sh ├── cleanup.sh ├── push.sh └── token.txt /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoorPilot/Unofficial-Spotify/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /Edge/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoorPilot/Unofficial-Spotify/HEAD/Edge/build.sh -------------------------------------------------------------------------------- /Edge/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoorPilot/Unofficial-Spotify/HEAD/Edge/install.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoorPilot/Unofficial-Spotify/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoorPilot/Unofficial-Spotify/HEAD/Screenshot.png -------------------------------------------------------------------------------- /Stable/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoorPilot/Unofficial-Spotify/HEAD/Stable/build.sh -------------------------------------------------------------------------------- /Stable/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoorPilot/Unofficial-Spotify/HEAD/Stable/install.sh -------------------------------------------------------------------------------- /auto-build/auto-edge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoorPilot/Unofficial-Spotify/HEAD/auto-build/auto-edge.sh -------------------------------------------------------------------------------- /auto-build/auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoorPilot/Unofficial-Spotify/HEAD/auto-build/auto.sh -------------------------------------------------------------------------------- /auto-build/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoorPilot/Unofficial-Spotify/HEAD/auto-build/cleanup.sh -------------------------------------------------------------------------------- /auto-build/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoorPilot/Unofficial-Spotify/HEAD/auto-build/push.sh -------------------------------------------------------------------------------- /auto-build/token.txt: -------------------------------------------------------------------------------- 1 | insert_token_here 2 | --------------------------------------------------------------------------------