Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FR] Add Tab Colors #10

Open
JohnLegrandRichards opened this issue Apr 28, 2020 · 1 comment
Open

[FR] Add Tab Colors #10

JohnLegrandRichards opened this issue Apr 28, 2020 · 1 comment

Comments

@JohnLegrandRichards
Copy link
Collaborator

JohnLegrandRichards commented Apr 28, 2020

Add ability to define tab colors
This could be RGB or have some predefined colors

example:

version: "1.0"
tabs:
window-1:
root: "~/Documents/Moxy-Projects/navblue-service"
color: [255, 128, 128]
title: "My Title"
panes:
- title: "A pane titler"
position: "1/1"

@martin-braun
Copy link

tabset can do this, so you can do something like this:

version: "1.0"
profile: "Default"
tabs:
  red:
    root: "$HOME"
    title: "red"
    panes:
      - position: "1/1"
        commands:
          - "tabset --color #ff0000"
          - "vim .env"
      - position: "1/2"
        commands:
          - "tabset --color #ff99ff"
          - "./wizard.ts -h"
  blue:
    root: "$HOME"
    title: "blue"
    panes:
      - position: "1/1"
        commands:
          - "tabset --color #0000ff"
          - "vim .env"

Unfortunately, it requires a node dependency and adds more overhead, making this thing even slower to launch. I would love to have this built into itomate.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants