Files
CapSpace/AutoStart.bat

34 lines
978 B
Batchfile

@echo off
REM Wait for system to settle
timeout /t 2 /nobreak
REM 1. Figma
vdesk run --on 1 "C:\Users\MAO_D\scoop\apps\figma\current\Figma.exe"
timeout /t 3
REM 2. Windows Terminal
vdesk run --on 2 wt
timeout /t 1
REM 3. VS Code
vdesk run --on 3 "C:\Users\MAO_D\scoop\apps\vscode\current\Code.exe"
timeout /t 1
REM 4. Chrome - Localhost
vdesk run --on 4 "C:\Users\MAO_D\scoop\apps\googlechrome\current\chrome.exe" -a "http://localhost:57202/"
timeout /t 1
REM 5. Chrome - Gemini
vdesk run --on 5 "C:\Users\MAO_D\scoop\apps\googlechrome\current\chrome.exe" -a "https://gemini.google.com/app"
timeout /t 1
REM 6. Chrome - Scoop and Git
vdesk run --on 6 "C:\Users\MAO_D\scoop\apps\googlechrome\current\chrome.exe" -a "https://scoop.sh/"
timeout /t 1
vdesk run --on 6 "C:\Users\MAO_D\scoop\apps\googlechrome\current\chrome.exe" -a "https://git.furtherverse.com/mdy"
timeout /t 1
REM 7. Telegram
vdesk run --on 7 "C:\Users\MAO_D\scoop\apps\telegram\current\Telegram.exe"
exit