BlockTheSpot/BlockTheSpot + Spicetify.bat
Red 8ae1fbf0d2
[skip ci] Update BlockTheSpot + Spicetify.bat
Added warning for spicetify installation
2024-04-08 22:45:10 +09:00

13 lines
749 B
Batchfile

@echo off
set /p UserInput= "Spicetify will be Installed. If you don't agree, use the BlockTheSpot script, else press 'y' to continue (y/n)? "
if /i "%UserInput%"=="y" (
powershell -Command "& {iwr -useb https://raw.githubusercontent.com/spicetify/spicetify-cli/master/install.ps1 | iex}"
powershell -Command "& {iwr -useb https://raw.githubusercontent.com/spicetify/spicetify-marketplace/main/resources/install.ps1 | iex}"
powershell -Command "& {[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -UseBasicParsing 'https://raw.githubusercontent.com/mrpond/BlockTheSpot/master/install.ps1' | Invoke-Expression}"
pause
) else (
echo "Patch not installed."
pause
exit /b
)