From 362f3b3d86edf15667e9c9df1bc40c6b9c887c34 Mon Sep 17 00:00:00 2001 From: ediblerope Date: Thu, 16 Apr 2026 19:46:04 +0100 Subject: [PATCH] Collapse VSCodium title bar via height instead of display:none Using display:none removed the drag region entirely, which caused GNOME/Mutter to fall back to server-side decorations. Collapsing the title bar to 0 height keeps VSCodium's frameless state intact. Co-Authored-By: Claude Opus 4.6 --- hosts/FredOS-Gaming.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/FredOS-Gaming.nix b/hosts/FredOS-Gaming.nix index d48f70f..7c0a78b 100644 --- a/hosts/FredOS-Gaming.nix +++ b/hosts/FredOS-Gaming.nix @@ -26,7 +26,7 @@ workbenchHtml="$out/lib/vscode/resources/app/out/vs/code/electron-browser/workbench/workbench.html" if [ -f "$workbenchHtml" ]; then substituteInPlace "$workbenchHtml" \ - --replace-fail '' '' + --replace-fail '' '' fi ''; }))