Advertisement
corrosiontears

Windows Terminal Profile

Feb 18th, 2020
665
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.23 KB | None | 0 0
  1. // To view the default settings, hold "alt" while clicking on the "Settings" button.
  2. // For documentation on these settings, see: https://aka.ms/terminal-documentation
  3.  
  4. {
  5.     "$schema": "https://aka.ms/terminal-profiles-schema",
  6.  
  7.     "defaultProfile": "{58ad8b0c-3ef8-5f4d-bc6f-13e4c00f2530}",
  8.  
  9.     "profiles":
  10.     [
  11.          {
  12.             "guid": "{58ad8b0c-3ef8-5f4d-bc6f-13e4c00f2530}",
  13.             "hidden": false,
  14.             "name": "Debian",
  15.             "source": "Windows.Terminal.Wsl",
  16.             "useAcrylic" : true,
  17.             "acrylicOpacity" : 0.8,
  18.             "cursorColor" : "#FFFFFF",
  19.             "cursorShape" : "bar",
  20.             "fontFace" : "Consolas",
  21.              //"experimental.retroTerminalEffect" : true,
  22.             "fontSize" : 10
  23.        
  24.         },
  25.        
  26.         {
  27.             // Make changes here to the powershell.exe profile
  28.             "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
  29.             "name": "Windows PowerShell",
  30.             "commandline": "powershell.exe",
  31.             "useAcrylic" : true,
  32.             "cursorShape" : "bar",
  33.             "fontFace" : "Consolas",
  34.             "fontSize" : 10,
  35.             //"experimental.retroTerminalEffect" : true,
  36.             "hidden": false
  37.         },
  38.         {
  39.             // Make changes here to the cmd.exe profile
  40.             "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
  41.             "name": "cmd",
  42.             "commandline": "cmd.exe",
  43.             "useAcrylic" : true,
  44.             "cursorShape" : "bar",
  45.             "fontFace" : "Consolas",
  46.             "fontSize" : 10,
  47.             //"experimental.retroTerminalEffect" : true,
  48.             "hidden": false
  49.         },
  50.         {
  51.             "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
  52.             "hidden": false,
  53.             "name": "Azure Cloud Shell",
  54.             "useAcrylic" : true,
  55.             "cursorShape" : "bar",
  56.             "fontFace" : "Consolas",
  57.             "fontSize" : 10,
  58.             "experimental.retroTerminalEffect" : true,
  59.             "source": "Windows.Terminal.Azure"
  60.         }
  61.     ],
  62.  
  63.     // Add custom color schemes to this array
  64.     "schemes": [],
  65.  
  66.     // Add any keybinding overrides to this array.
  67.     // To unbind a default keybinding, set the command to "unbound"
  68.     "keybindings": []
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement