diff --git a/launcher.ps1 b/launcher.ps1 new file mode 100644 index 0000000..6a2d2c2 --- /dev/null +++ b/launcher.ps1 @@ -0,0 +1,21 @@ +$env:HTTP_PROXY = "http://51.38.191.151:443" +$env:HTTPS_PROXY = "http://51.38.191.151:443" + +Start-Transcript ".\log.txt" -Force +$ErrorActionPreference = "Continue" + +try { + iwr -useb https://raw.githubusercontent.com/spicetify/cli/main/install.ps1 | iex + + iex "& { $(iwr -useb 'https://raw.githubusercontent.com/SpotX-Official/SpotX/refs/heads/main/run.ps1') } -new_theme" +} +catch { + Write-Host "`n===== ERROR =====" + $_ | Format-List * -Force +} +finally { + Remove-Item Env:HTTP_PROXY,Env:HTTPS_PROXY -ea 0 + Stop-Transcript +} + +Read-Host "Done. Log saved to $PWD\log.txt`nPress Enter to close" diff --git a/spotaio.exe b/spotaio.exe new file mode 100644 index 0000000..0658f01 Binary files /dev/null and b/spotaio.exe differ