restore-terminals-vscode icon indicating copy to clipboard operation
restore-terminals-vscode copied to clipboard

Custom icons and colors

Open Etiake opened this issue 1 year ago • 2 comments

Hi! When you add a terminal in Visual Studio Code, you can edit the icon and the color of the name, clicking with the right mouse button on that terminal name. I know that is not the most needed feature, but I think it would be nice if you can specify icon and color of terminal name in the configuration. Example:

{
  "artificialDelayMilliseconds": 300,
  "keepExistingTerminalsOpen": false,
  "runOnStartup": true,
  "terminals": [
    {
      "splitTerminals": [
        {
          "commands": ["ng test myLib"],
          "name": "Test",
          "shouldRunCommands": true,
          "icon": "beaker",
          "color": "terminal.ansiGreen" //(or better: "color": "Green")
        }
  ]
}

Thanks a lot <3

Etiake avatar Aug 26 '22 07:08 Etiake