Last active
July 22, 2020 10:48
-
-
Save aram535/74e011f35ccac98feb7744fe496a3b4f to your computer and use it in GitHub Desktop.
Microsoft Terminal Release settings.json
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": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
| "copyOnSelect": true, | |
| "copyFormatting": false, | |
| "profiles": | |
| { | |
| "defaults": | |
| { | |
| "antialiasingMode": "cleartype", | |
| "fontFace": "Consolas", | |
| "fontSize": 12, | |
| "historySize" : 9001 | |
| }, | |
| "list": | |
| [ | |
| { | |
| "acrylicOpacity": 0.9, | |
| "backgroundImageOpacity" : 0.5, | |
| "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
| "acrylicOpacity": 0.9, | |
| "backgroundImageAlignment": "bottomRight", | |
| "backgroundImageOpacity": 1, | |
| "backgroundImageStretchMode": "none", | |
| "name": "Command Prompt", | |
| "commandline": "cmd.exe", | |
| "hidden": false, | |
| "backgroundImage": "c:/Users/Aram/Documents/logos/windows_logos_PNG22.png", | |
| "useAcrylic": true | |
| }, | |
| { | |
| "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
| "hidden": true, | |
| "name": "Azure Cloud Shell", | |
| "source": "Windows.Terminal.Azure" | |
| }, | |
| { | |
| "acrylicOpacity": 0.9, | |
| "backgroundImageAlignment": "bottomRight", | |
| "backgroundImageOpacity": 1, | |
| "backgroundImageStretchMode": "none", | |
| "guid": "{07b52e3e-de2c-5db4-bd2d-ba144ed6c273}", | |
| "backgroundImage": "c:/Users/Aram/Documents/logos/ubuntu-4-logo-png-transparent-320.png", | |
| "backgroundImageOpacity" : 0.5, | |
| "colorScheme": "UbuntuLegit", | |
| "hidden": false, | |
| "name": "Ubuntu-20.04 🐳", | |
| "source": "Windows.Terminal.Wsl", | |
| "useAcrylic": true | |
| }, | |
| { | |
| "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
| "name": "Windows PowerShell", | |
| "commandline": "powershell.exe", | |
| "hidden": false | |
| } | |
| ] | |
| }, | |
| "schemes": [ | |
| { | |
| "background": "#2C001E", | |
| "black": "#4E9A06", | |
| "blue": "#3465A4", | |
| "brightBlack": "#555753", | |
| "brightBlue": "#729FCF", | |
| "brightCyan": "#34E2E2", | |
| "brightGreen": "#8AE234", | |
| "brightPurple": "#AD7FA8", | |
| "brightRed": "#EF2929", | |
| "brightWhite": "#EEEEEE", | |
| "brightYellow": "#FCE94F", | |
| "cyan": "#06989A", | |
| "foreground": "#EEEEEE", | |
| "green": "#300A24", | |
| "name": "UbuntuLegit", | |
| "purple": "#75507B", | |
| "red": "#CC0000", | |
| "white": "#D3D7CF", | |
| "yellow": "#C4A000" | |
| } | |
| ], | |
| "keybindings": | |
| [ | |
| { "command": {"action": "copy", "singleLine": false }, "keys": "ctrl+c" }, | |
| { "command": "paste", "keys": "ctrl+v" }, | |
| { "command": "find", "keys": "ctrl+shift+f" }, | |
| { "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment