Created
November 2, 2020 13:29
-
-
Save JessicaMulein/0d9d97f35c77edf502658f6e7ccd153d to your computer and use it in GitHub Desktop.
Example Windows Terminal profiles for PowerShell, NodeJS, Cygwin, Git Bash, Ubuntu
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
// A profile specifies a command to execute paired with information about how it should look and feel. | |
// Each one of them will appear in the 'New Tab' dropdown, | |
// and can be invoked from the commandline with `wt.exe -p xxx` | |
// To learn more about profiles, visit https://aka.ms/terminal-profile-settings | |
"profiles": | |
{ | |
"defaults": | |
{ | |
// Put settings here that you want to apply to all profiles. | |
}, | |
"list": [ | |
{ | |
// Make changes here to the powershell.exe profile. | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"name": "Windows PowerShell", | |
"commandline": "powershell.exe", | |
"hidden": false | |
}, | |
{ | |
// Make changes here to the cmd.exe profile. | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "Command Prompt", | |
"commandline": "cmd.exe", | |
"hidden": false | |
}, | |
{ | |
"guid": "{07b52e3e-de2c-5db4-bd2d-ba144ed6c273}", | |
"hidden": false, | |
"name": "Ubuntu-20.04", | |
"source": "Windows.Terminal.Wsl" | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"hidden": false, | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure" | |
}, | |
{ | |
"acrylicOpacity": 0.75, | |
"background": "#000000", | |
"closeOnExit": true, | |
"colorScheme": "Campbell", | |
"commandline": "\"%PROGRAMFILES%\\git\\bin\\bash.exe\" --cd-to-home --login -i -l", | |
"cursorColor": "#FFFFFF", | |
"cursorShape": "bar", | |
"fontFace": "Consolas", | |
"fontSize": 10, | |
"guid": "{2B8AB002-2BEA-405E-9B23-20784253901D}", | |
"historySize": 9001, | |
"icon": "%PROGRAMFILES%\\git\\mingw64\\share\\git\\git-for-windows.ico", | |
"name": "Git Bash", | |
"padding": "0, 0, 0, 0", | |
"snapOnInput": true, | |
"useAcrylic": true | |
}, | |
{ | |
"guid": "{11EFAC42-4E09-4CA2-BF2C-3C8BF5E73E7E}", | |
"name": "Node.JS", | |
"commandline": "C:\\Program Files\\nodejs\\node.exe", | |
"icon": "https://nodejs.org/favicon.ico", | |
"hidden": false | |
}, | |
{ | |
"acrylicOpacity": 0.75, | |
"closeOnExit": true, | |
"colorScheme": "Campbell", | |
"commandline": "C:\\cygwin64\\cygwin.bat", | |
"cursorColor": "#FFFFFF", | |
"cursorShape": "bar", | |
"fontFace": "Input", | |
"fontSize": 12, | |
"guid": "{48026C38-2DEB-4381-BDBA-9FE00CCF9405}", | |
"historySize": 9001, | |
"icon": "C:/cygwin64/Cygwin-Terminal.ico", | |
"name": "Cygwin", | |
"padding": "0, 0, 0, 0", | |
"snapOnInput": true, | |
"useAcrylic": true | |
} | |
] | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment