EthanSK / restore-terminals-vscode

A VSCode extension to restore/startup terminals with a custom configuration
https://marketplace.visualstudio.com/items?itemName=EthanSK.restore-terminals
MIT License
76 stars 35 forks source link

Custom icons and colors #33

Open Etiake opened 2 years ago

Etiake commented 2 years ago

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

alifeinbinary commented 1 year ago

+1. Just installed the extension and this is the first feature I looked for.

mscranton-at-arbor commented 1 year ago

This is also the first thing i looked for after configuring. I'm very satisfied with the extension so far, but having that last little bit of config scripted would be awesome!