Last active
August 7, 2020 04:21
-
-
Save Erisa/e57be3970c5d692bc7a6527ed5634a4e to your computer and use it in GitHub Desktop.
Windows Terminal Config
This file contains hidden or 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
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"snapToGridOnResize": false, | |
"profiles": { | |
"defaults": { | |
"fontFace": "Cascadia Code", | |
"useAcrylic": true, | |
"padding": "0, 0, 0, 0", | |
"colorScheme": "One Half Dark", | |
"fontSize": 10, | |
"suppressApplicationTitle": true, | |
"acrylicOpacity": 0.9 | |
}, | |
"list": [ | |
{ | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"name": "PowerShell", | |
"commandline": "powershell.exe" | |
}, | |
{ | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "Command Prompt", | |
"commandline": "cmd.exe", | |
"fontFace": "Cascadia Code" | |
}, | |
{ | |
"guid": "{58ad8b0c-3ef8-5f4d-bc6f-13e4c00f2530}", | |
"name": "Debian", | |
"source": "Windows.Terminal.Wsl", | |
"icon": "C:\\assets\\debian.png", | |
"startingDirectory": "\\\\wsl$\\Debian\\home\\erisa" | |
}, | |
{ | |
"guid": "{96933987-e7b7-55a2-a499-f9d06dcf0997}", | |
"name": "Alpine", | |
"source": "Windows.Terminal.Wsl", | |
"icon": "C:\\assets\\alpine.png", | |
"startingDirectory": "\\\\wsl$\\Alpine\\root" | |
}, | |
{ | |
"guid": "{a5a97cb8-8961-5535-816d-772efe0c6a3f}", | |
"name": "Arch", | |
"source": "Windows.Terminal.Wsl", | |
"icon": "C:\\assets\\arch.png", | |
"startingDirectory": "\\\\wsl$\\Arch\\root" | |
}, | |
{ | |
"guid": "{1d2d9f1c-0192-5285-8115-38593c2c526e}", | |
"name": "Gentoo", | |
"source": "Windows.Terminal.Wsl", | |
"icon": "C:\\assets\\gentoo.png", | |
"startingDirectory": "\\\\wsl$\\gentoo\\root" | |
}, | |
{ | |
"guid": "{342eaa22-06b2-5df7-b78e-a6046a4926db}", | |
"name": "Void", | |
"source": "Windows.Terminal.Wsl", | |
"icon": "C:\\assets\\void.png", | |
"startingDirectory": "\\\\wsl$\\Void\\root" | |
}, | |
{ | |
"guid": "{7514516a-b5ae-5c16-8b7a-b6833d30df38}", | |
"name": "tinycore", | |
"source": "Windows.Terminal.Wsl" | |
}, | |
{ | |
"guid": "{355927cf-a8dd-4043-9ba0-5db1bb58b828}", | |
"name": "Cygwin", | |
"commandline": "cmd.exe /c call C:\\Users\\Erisa\\cygwin64\\Cygwin.bat", | |
"icon": "C:\\assets\\cygwin.png" | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"name": "Azure", | |
"source": "Windows.Terminal.Azure" | |
}, | |
{ | |
"guid": "{3dbc92bc-c313-4923-8a7f-78d5e7900c4c}", | |
"name": "Google Cloud", | |
"commandline": "wsl.exe -d ubuntu gcloud alpha cloud-shell ssh", | |
"colorScheme": "One Half Dark", | |
"icon": "C:\\assets\\google.png" | |
}, | |
{ | |
"guid": "{edfc32eb-cd6f-4f26-a645-a82ac5381b17}", | |
"name": "Tiger", | |
"commandline": "ssh.exe tiger.host.erisa.cloud", | |
"icon": "C:\\assets\\linux.ico" | |
}, | |
{ | |
"guid": "{5b8e824c-6267-4e7d-9c0e-440fc5337084}", | |
"name": "Snug", | |
"commandline": "ssh.exe [email protected]", | |
"icon": "C:\\assets\\linux.ico" | |
}, | |
{ | |
"guid": "{9924542b-1291-45b3-875d-a84f0205f1e2}", | |
"name": "Crystal", | |
"commandline": "ssh.exe [email protected]", | |
"icon": "C:\\assets\\linux.ico" | |
}, | |
{ | |
"name": "Turtle", | |
"commandline": "ssh.exe [email protected]", | |
"guid": "{e665347b-e57d-4152-b1e8-74dffb443911}", | |
"icon": "C:\\assets\\linux.ico" | |
} | |
] | |
}, | |
"schemes": [ | |
{ | |
"name": "One Half Light", | |
"foreground": "#383A42", | |
"background": "#FAFAFA", | |
"black": "#383A42", | |
"red": "#E45649", | |
"green": "#50A14F", | |
"yellow": "#C18301", | |
"blue": "#0184BC", | |
"purple": "#A626A4", | |
"cyan": "#0997B3", | |
"white": "#383A42", | |
"brightBlack": "#4F525D", | |
"brightRed": "#DF6C75", | |
"brightGreen": "#98C379", | |
"brightYellow": "#E4C07A", | |
"brightBlue": "#61AFEF", | |
"brightPurple": "#C577DD", | |
"brightCyan": "#56B5C1", | |
"brightWhite": "#000000" | |
} | |
], | |
"keybindings": [ | |
{ | |
"command": "newTab", | |
"keys": [ | |
"ctrl+t" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment