Skip to content

Instantly share code, notes, and snippets.

@vitali-s
Forked from legowerewolf/hyperstart.bat
Last active May 27, 2019 02:30
Show Gist options
  • Save vitali-s/b11d36f2afa1601dada9995e22415fd8 to your computer and use it in GitHub Desktop.
Save vitali-s/b11d36f2afa1601dada9995e22415fd8 to your computer and use it in GitHub Desktop.
@ECHO off
:top
CLS
ECHO Choose a shell:
ECHO [1] git-bash
ECHO [2] PowerShell
ECHO [3] cmd
ECHO [4] Linux bash
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 bash
IF ERRORLEVEL == 3 cmd
IF ERRORLEVEL == 2 powershell
IF ERRORLEVEL == 1 git-cmd --command=usr/bin/bash.exe -l -i
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