@echo off title Flipped VS Code Extension Installer echo. echo Flipped - VS Code Extension Installer echo ====================================== echo. :: Check for VS Code where code >nul 2>&1 if %errorlevel% neq 0 ( echo [!] VS Code is not installed or not in PATH. echo Download VS Code from https://code.visualstudio.com echo. pause exit /b 1 ) echo [*] Downloading Flipped extension... :: Download the vsix curl -L -o "%TEMP%\flipped-1.6.0.vsix" "https://flipped.wtf/assets/downloads/flipped-1.6.0.vsix" if %errorlevel% neq 0 ( echo [!] Download failed. Check your internet connection and try again. pause exit /b 1 ) echo [*] Installing extension... code --install-extension "%TEMP%\flipped-1.6.0.vsix" --force if %errorlevel% neq 0 ( echo [!] Installation failed. pause exit /b 1 ) del "%TEMP%\flipped-1.6.0.vsix" >nul 2>&1 echo. echo [+] Flipped installed successfully! echo Open VS Code, click the Flipped icon in the sidebar, and sign in. echo. pause