Skip to content

Instantly share code, notes, and snippets.

@hughc
Created January 30, 2024 21:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hughc/4c0d7eca879729154678bbd8b8a7d6cf to your computer and use it in GitHub Desktop.
Save hughc/4c0d7eca879729154678bbd8b8a7d6cf to your computer and use it in GitHub Desktop.
VsCode workspace settings - distinguish between multiple VSCode windows by colour coding their title and status bars
{
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#cacabc",
"titleBar.activeForeground": "#000",
"titleBar.inactiveBackground": "#cacabc",
"titleBar.inactiveForeground": "#cacabc",
"statusBar.foreground": "#222",
"statusBar.background": "#cacabc",
}
}
@hughc
Copy link
Author

hughc commented Jan 30, 2024

Create a .vscode dir in the root of your project to hold this file. Don't forget to add it to your .gitignore - friends don't let friends commit settings files.

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