A pragmatic fork of flagello/Essence mixing my inline toolbar style
Set the user setting "window.titleBarStyle": "custom"
.
Now you need to edit the code the VS Code ships with.
You need to change the traffic light positions to move down a bit, this is controlled by titleBarStyle
on a new Window.
Set the user setting "window.titleBarStyle": "custom"
.
Then:
code /Applications/Visual\ Studio\ Code.app/Contents/Resources/app/out/vs/code/electron-main/main.js
Edit (h.titleBarStyle="hidden",
to be (h.titleBarStyle="hidden-inset",
.
code /Applications/Visual\ Studio\ Code.app/Contents/Resources/app/out/vs/workbench/electron-browser/workbench.main.js
Edit prototype.isFullscreen=function(){this._fullscreen
to prototype.isFullscreen=function(){return true; this._fullscreen
Edit this.activitybarWidth=r?0:this.partLayoutInfo
to this.activitybarWidth=r?0:65,this.partLayoutInfo
Edit (w.titleBarStyle="hidden",
to be (w.titleBarStyle="hidden-inset",
.
You need to use the extension "Custom CSS and JS Loader" - search and install it.
Then clone this repo.
git clone https://github.com/orta/Essence.git
Set a user preference for your custom CSS:
"vscode_custom_css.imports": [
"file:///Users/orta/dev/misc/Essence/essence.css"
],
Run the command "Enable Custom CSS and JS".
Restart VS Code.
You will see "Your Code installation appears to be corrupt. Please reinstall." on every new window, press escape to make it go away. You have modded VS Code
I use the color theme "Ayu Light". If you find others that fit well, I'd love to make a list in here, send me a PR.
The front-end is just a website, so you can use the chrome web inspector to make your changes. What I do is use the command "Developer: Toggle Developer Tools" then dig through the DOM to find the element to style.
You can make your changes at runtime to verify them, then add them to the CSS file. Then validate they work by doing "Reload Window".