I have a simple PowerShell script:
Start-Process powershell -args "-NoLogo -NoExit -Command `"cd .\back\; code .; npm start`""; Set-Location .\front\; code .; npm run dev;
Like, run frontend and backend in separate terminals and open VSCode. What I would like to change here is the terminal - open in Hyper instead of PowerShell.
If I run Start-Process powershell
, it will open Hyper terminal, but it will be empty.