Created
September 30, 2019 22:23
-
-
Save anthonyclarka2/c1f854ec7ca2a11468f04aa106b2356c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.