-
Notifications
You must be signed in to change notification settings - Fork 8.4k
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
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: Defining a default color scheme for all terminals #10840
Comments
There's already an issue open for that feature. See #4066. |
Okay but then in addition to that, the main point of this issue should be to be able to set a default theme that applies to all profiles |
You could always try setting the colorScheme in "profiles": {
"defaults": {
"colorScheme": "Campbell"
}
"list": [...]
} You can also quickly switch schemes with the Command palette and the "select color scheme..." action |
That is good to know, but the existing "default-scheme" is only used when creating a new profile, isn't it? The problem that I cant change the color theme for multiple open tabs with different profiles remains. |
Nope, it's used whenever a profile doesn't have another scheme set. So in this example: "profiles": {
"defaults": {
"colorScheme": "Campbell"
},
"list": [
{
"name": "foo",
"colorScheme": "Solarized"
},
{
"name": "bar"
}
]
}
|
Thank you, that is good to know! If I understand correctly, there are two things missing to create the wanted behaviour: First one is an option to unset the used theme from the GUI-settings, which could be done by inserting an option Second one is an option under "Appearance" that select a default color scheme as that is currently only possible through JSON. That sounds sufficiently easy to fix, if I find time to do it, I will fix it myself. |
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
Description of the new feature/enhancement
Allow the user to set the color scheme for all (or some) profiles.
I personally use the new terminal (only) for working with the WSL. I have different profiles that load different
.bashrc
-files according to what I am planning to work with.I would like to be able to set the color schemes of those in one quick action. That is especially important as I switch between light and dark themes for my OS very often, sometimes even time-of-day-depoendent. Having to switch the color schemes for each profile individually is very annoying.
Proposed technical implementation details (optional)
An even better solution could be to be able to set a default light-mode theme and a default dark-mode theme. That would change the colors of a console tab from light to dark when toggling light/dark mode in WIndows System Settings.
The text was updated successfully, but these errors were encountered: