-
-
Notifications
You must be signed in to change notification settings - Fork 959
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
Changing the current tab color #1287
Comments
seems somewhat odd using an escape code for that. A tab can have more than one window, so either:
(1) is easier to implement, (2) is more correct. If you want to implement it, you would first need to implement anew escape code for it, probably something under the DCS namespace with the @ key, look in parser.c for dispatch_dcs() then add a handler to store the requested color in window.py. Then implement using that color in tabs.py and tab_bar.py |
What about giving an initial array of colors, one per tab, in the order listed? |
Oh and for ease of use there should really be an interface for this in kitty remote control as well, since presumably escape codes will only be allowed to change the color of the current tab. |
I think option (1) is actually pretty reasonable if you consider the tab colour as belonging to the tab, not belonging to the window (which seems fair enough since it's the colour of the tab itself). |
@kovidgoyal are you releasing this feature in an upcoming release or is it nightly releases from now on? Asking because 0.23.1 was a while ago. |
Hello,
thanks for kitty!
Would you be interested in adding a command to change permanently the current tab color? I use a small app to color my iTerm tabs and was looking for a way to do the same in kitty. If you can point me at some code, I'll gladly try and add the feature.
The text was updated successfully, but these errors were encountered: