mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-24 21:21:53 -05:00
vscode: use custom titlebar on gnome
This commit is contained in:
parent
b812c4432b
commit
c37ce01f05
|
@ -80,7 +80,12 @@ in {
|
||||||
"terminal.integrated.fontSize" = config.stylix.fonts.sizes.terminal + 3;
|
"terminal.integrated.fontSize" = config.stylix.fonts.sizes.terminal + 3;
|
||||||
"update.mode" = "none";
|
"update.mode" = "none";
|
||||||
"window.menuBarVisibility" = "hidden";
|
"window.menuBarVisibility" = "hidden";
|
||||||
"window.titleBarStyle" = lib.mkDefault "native";
|
|
||||||
|
"window.titleBarStyle" =
|
||||||
|
if config.ar.home.desktop.gnome.enable
|
||||||
|
then "custom"
|
||||||
|
else "native";
|
||||||
|
|
||||||
"window.zoomPerWindow" = false;
|
"window.zoomPerWindow" = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue