Skip to content

Instantly share code, notes, and snippets.

@ssugiyama
Forked from legowerewolf/hyperstart.bat
Last active March 24, 2020 02:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ssugiyama/c28e10aa656e5a6aba210e7cd907cc3a to your computer and use it in GitHub Desktop.
Save ssugiyama/c28e10aa656e5a6aba210e7cd907cc3a to your computer and use it in GitHub Desktop.
@ECHO off
:top
CLS
ECHO Choose a shell:
ECHO [1] cmd
ECHO [2] ubuntu 16.04
ECHO [3] ubuntu 18.04
ECHO [4] debian
ECHO [5] PowerShell
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 powershell
IF ERRORLEVEL ==4 wsl -d debian
IF ERRORLEVEL ==3 wsl -d ubuntu-18.04
IF ERRORLEVEL ==2 wsl -d ubuntu
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