Skip to content

Instantly share code, notes, and snippets.

@gwennlbh
Last active April 24, 2020 06:55
Show Gist options
  • Save gwennlbh/e858595284d119bf477bc5187a0036ae to your computer and use it in GitHub Desktop.
Save gwennlbh/e858595284d119bf477bc5187a0036ae to your computer and use it in GitHub Desktop.
My Windows Terminal (Preview) profiles
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"profiles": [
{
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"hidden": false,
"name": "Ubuntu",
"source": "Windows.Terminal.Wsl",
"fontFace": "Fira Code",
"fontSize": 10,
"acrylicOpacity": 1,
"experimental.retroTerminalEffect": false,
// "backgroundImage": "C:/Users/ASUS/Pictures/wallpapers/quinni-jellyfish.jpg",
// "backgroundImageOpacity": 0.1,
"useAcrylic": false,
"colorScheme": "MyScheme",
"cursorShape": "underscore",
"startingDirectory": "D:/projects/"
},
{
// Make changes here to the powershell.exe profile
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"hidden": false,
"fontFace": "Fira Code",
"fontSize": 10,
"acrylicOpacity": 0.9,
"useAcrylic": true,
"colorScheme": "MyScheme"
},
{
// Make changes here to the cmd.exe profile
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "cmd",
"commandline": "cmd.exe",
"hidden": false,
"fontFace": "Fira Code",
"fontSize": 10,
"acrylicOpacity": 0.9,
"useAcrylic": true,
"colorScheme": "MyScheme"
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": true,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
},
{
"guid": "{58ad8b0c-3ef8-5f4d-bc6f-13e4c00f2530}",
"hidden": false,
"name": "Debian",
"source": "Windows.Terminal.Wsl"
},
{
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"hidden": false,
"name": "Ubuntu",
"source": "Windows.Terminal.Wsl"
}
],
// Add custom color schemes to this array
"schemes": [
{
"name": "MyScheme",
"black": "#2d3139",
"blue": "#61afef",
"brightBlack": "#7f848e",
"brightBlue": "#528bff",
"brightCyan": "#47f1cc",
"brightGreen": "#93e756",
"brightPurple": "#7e0097",
"brightRed": "#f44747",
"brightWhite": "#d7dae0",
"brightYellow": "#e7cb29",
"cyan": "#56b6c2",
"green": "#98c379",
"purple": "#c678dd",
"red": "#e06c75",
"white": "#d7dae0",
"yellow": "#e5c07b",
"foreground": "#c8c8c8",
"background": "#282c34",
"selectionBackground": "#4E586F"
}
],
// Add any keybinding overrides to this array.
// To unbind a default keybinding, set the command to "unbound"
"keybindings": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment