Skip to content

Instantly share code, notes, and snippets.

@anthonyclarka2
Created September 30, 2019 22:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anthonyclarka2/c1f854ec7ca2a11468f04aa106b2356c to your computer and use it in GitHub Desktop.
Save anthonyclarka2/c1f854ec7ca2a11468f04aa106b2356c to your computer and use it in GitHub Desktop.
ForegroundColour=182,190,204
BackgroundColour=31,33,38
CursorColour=109,230,245
Black=30,34,42
BoldBlack=30,34,42
Red=255,123,133
BoldRed=255,123,133
Green=192,246,153
BoldGreen=192,246,153
Yellow=255,214,137
BoldYellow=255,214,137
Blue=103,187,255
BoldBlue=103,187,255
Magenta=228,138,255
BoldMagenta=228,138,255
Cyan=109,230,245
BoldCyan=109,230,245
White=228,238,255
BoldWhite=228,238,255
CursorType=block
CursorBlinks=no
Font=Source Code Pro ExtraLight
FontHeight=11
BoldAsFont=no
BoldAsColour=yes
FontSmoothing=full
Locale=en_US
Charset=UTF-8
FontWeight=200
Columns=120
Rows=40
@anthonyclarka2
Copy link
Author

I was having random trouble opening WSL via Mintty until I found this particular shortcut:

D:\wsl-terminal\bin\mintty.exe /bin/wslbridge.exe -t -C ~ -- /usr/bin/zsh

-t means wslbridge.exe uses a pty
-C ~ means change directory to my homedir
-- means no more arguments to the wslbridge executable
/usr/bin/zsh means run my shell, because wslbridge hardcodes bash.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment