Skip to content

Instantly share code, notes, and snippets.

@szul
Forked from legowerewolf/hyperstart.bat
Last active April 29, 2021 02:10
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save szul/f45e47be6d50bf2162a97eadbbad31a7 to your computer and use it in GitHub Desktop.
Save szul/f45e47be6d50bf2162a97eadbbad31a7 to your computer and use it in GitHub Desktop.
@ECHO off
:top
CLS
ECHO Choose a shell:
ECHO [1] cmd
ECHO [2] bash
ECHO [3] PowerShell
ECHO [4] PowerShell Core
ECHO [5] Python
ECHO.
ECHO [6] restart elevated
ECHO [7] exit
ECHO.
CHOICE /N /C:1234567 /M "> "
CLS
IF ERRORLEVEL ==7 GOTO end
IF ERRORLEVEL ==6 powershell -Command "Start-Process hyper -Verb RunAs"
IF ERRORLEVEL ==5 python
IF ERRORLEVEL ==4 "C:\Program Files\PowerShell\6.0.2\pwsh.exe"
IF ERRORLEVEL ==3 powershell
IF ERRORLEVEL ==2 bash
IF ERRORLEVEL ==1 cmd
CLS
ECHO Switch or exit?
ECHO [1] Switch
ECHO [2] Exit
CHOICE /N /C:12 /D 2 /T 5 /M "> "
IF ERRORLEVEL ==2 GOTO end
IF ERRORLEVEL ==1 GOTO top
:end

Hyperstart

Short script for Windows that allows you to select which shell you want when Hyper starts. As flexible as the windows command line.

Install

  1. Grab the script from below.
  2. Save it wherever you want.
  3. Set your shell to '' (meaning CMD on Windows) and your shellArgs to ["/C", "path\\to\\your\\hyperstart.bat"]
  4. Additional steps
  • To enable the "launch elevated" line, Hyper needs to be on the PATH.

Customize

Add a shell

  1. Add another ECHO line with a new number: ECHO [4] Python
  2. Add the corresponding number to the CHOICE line: CHOICE /N /C:1234
  3. Add the corresponding IF ERRORLEVEL line below the CLS line: IF ERRORLEVEL ==4 python
  4. Fix up the other numbers, if necessary.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment