Advertisement
Guest User

Terminal

a guest
Oct 19th, 2019
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. {
  2. "$schema": "https://aka.ms/terminal-profiles-schema",
  3. "defaultProfile": "{x}",
  4. "profiles":
  5. [
  6. {
  7. // Make changes here to the powershell.exe profile
  8. "guid": "{x}",
  9. "name": "Windows PowerShell",
  10. "commandline": "powershell.exe -nologo",
  11. "hidden": false,
  12. "useAcrylic": true,
  13. "acrylicOpacity":0.5,
  14. "fontFace":"Consolas",
  15. "background" : "#880000",
  16. "fontSize":10
  17. },
  18. {
  19. "guid": "{x}",
  20. "name": "cmd",
  21. "commandline": "cmd.exe",
  22. "hidden": true
  23. },
  24. {
  25. "guid": "{x}",
  26. "hidden": false,
  27. "name": "Ubuntu",
  28. "source": "Windows.Terminal.Wsl",
  29. "useAcrylic": true,
  30. "acrylicOpacity":0.5,
  31. "fontFace":"Consolas",
  32. "background" : "#880000",
  33. "icon":"D:\\Pictures\\ICO\\ubuntu.ico",
  34. "fontSize":10
  35. },
  36. {
  37. "guid": "{x}",
  38. "hidden": true,
  39. "name": "Azure Cloud Shell",
  40. "source": "Windows.Terminal.Azure"
  41. },
  42. {
  43. "guid": "{x}",
  44. "hidden": false,
  45. "name": "PowerShell Core",
  46. "source": "Windows.Terminal.PowershellCore",
  47. "useAcrylic": true,
  48. "acrylicOpacity":0.5,
  49. "fontFace":"Consolas",
  50. "background" : "#880000",
  51. "fontSize":10
  52. }
  53. ],
  54.  
  55. // Add custom color schemes to this array
  56. "schemes": [],
  57.  
  58. // Add any keybinding overrides to this array.
  59. // To unbind a default keybinding, set the command to "unbound"
  60. "keybindings": []
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement