Is there a way to change the color of the integrated terminal (windows cmd) when its focused/active?
i use ctrl+l to change between the terminal and the working space but sometimes i have problems telling what area is active
{
"key": "ctrl+l",
"command": "workbench.action.terminal.focus",
"when": "!terminalFocus"
},
{
"key": "ctrl+l",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
}
Hopefully there is something better than this but you could try setting your terminal cursor to an obvious color such as red:
"workbench.colorCustomizations": {
//"terminal.background": "#567",
//"terminal.foreground": "#fff",
"terminalCursor.foreground": "#f00"
}
And then you'll see the terminal cursor change significantly when the terminal gets or loses focus.
Extension Custom CSS and JS Loader.
.terminal {
border-left: 5px solid #41A6D9;
opacity: 1;
}
.terminal:not(.focus) {
border-color: transparent;
opacity: 0.5;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With