Created
January 27, 2020 08:57
-
-
Save netscylla/48adec2966d96b148391f186953ae2e1 to your computer and use it in GitHub Desktop.
Windows Terminal Profile
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
// To view the default settings, hold "alt" while clicking on the "Settings" button. | |
// For documentation on these settings, see: https://aka.ms/terminal-documentation | |
// Used iconsextract to extract icons from exes and store within the roaming user profile directory | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"profiles": [ | |
{ | |
// Make changes here to the powershell.exe profile | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"name": "Windows PowerShell", | |
"commandline": "powershell.exe", | |
"hidden": false, | |
"acrylicOpacity": 0.8, | |
"useAcrylic": true, | |
"backgroundImageOpacity": 0.1, | |
"backgroundImageStretchMode": "none", | |
"cursorShape": "bar", | |
"fontFace": "Cascadia Code", | |
"fontSize": 10 | |
}, | |
{ | |
// Make changes here to the cmd.exe profile | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "cmd", | |
"commandline": "cmd.exe", | |
"hidden": false, | |
"acrylicOpacity": 0.8, | |
"useAcrylic": true, | |
"backgroundImageOpacity": 0.1, | |
"backgroundImageStretchMode": "none", | |
"cursorShape": "vintage", | |
"fontFace": "Consolas", | |
"fontSize": 10 | |
}, | |
{ | |
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"hidden": false, | |
"name": "PowerShell Core", | |
"source": "Windows.Terminal.PowershellCore" | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"hidden": false, | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure" | |
}, | |
{ | |
"guid": "{4cfb49a1-f99c-40b3-8822-cc95e97a1f8e}", | |
"hidden": false, | |
"name": "AWS Cli Shell", | |
"icon": "C:\\users\\user\\AppData\\Roaming\\icons\\AWS-icon.png", | |
"commandline": "C:\\Python38\\Scripts\\aws-shell.exe" | |
}, | |
{ | |
"guid": "{4169263a-e4a1-42e2-b0de-19329cac9ace}", | |
"hidden": false, | |
"name": "Python Shell", | |
"icon": "C:\\users\\user\\AppData\\Roaming\\icons\\python_1.ico", | |
"startingDirectory": "C:\\Python38", | |
"commandline": "C:\\Python38\\python.exe" | |
}, | |
{ | |
"guid": "{1fdc3d33-a906-472e-983b-1f157f244cee}", | |
"hidden": false, | |
"name": "VS Shell", | |
"fontSize": 10, | |
"icon": "C:\\users\\user\\AppData\\Roaming\\icons\\vs.ico", | |
"startingDirectory": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\Common7\\Tools\\", | |
"commandline": "cmd.exe /k VsDevCmd.bat" | |
} | |
], | |
// Add custom color schemes to this array | |
"schemes": [], | |
// Add any keybinding overrides to this array. | |
// To unbind a default keybinding, set the command to "unbound" | |
"keybindings": [ | |
{ | |
"command": "closeWindow", | |
"keys": [ "alt+f4" ] | |
}, | |
{ | |
"command": "splitHorizontal", | |
"keys": [ "ctrl+/" ] | |
}, | |
{ | |
"command": "splitVertical", | |
"keys": [ "ctrl+\\" ] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment