piousdeer / vscode-adwaita

VS Code theme for the GNOME desktop
140 stars 10 forks source link

Mismatched title bar #3

Closed YousefSaber closed 2 years ago

YousefSaber commented 2 years ago

despite installing adw-gtk3 VSCode still can't implement adwaita theme on title bar

Screenshot from 2022-04-08 13-28-06

(base) joseph@localhost:~> ls /usr/share/themes/
Adwaita  Adwaita-dark  adw-gtk3  adw-gtk3-dark  Default  Emacs  HighContrast  Raleigh

my settings.json file

{
    "java.configuration.runtimes": [],
    "java.home": "/home/joseph/Downloads/OpenJDK11U-jdk_x64_linux_hotspot_11.0.7_10/jdk-11.0.7+10",
    "notebook.consolidatedRunButton": true,
    "notebook.lineNumbers": "on",
    "jupyter.askForKernelRestart": false,
    "workbench.preferredDarkColorTheme": "Adwaita Dark",
    "workbench.preferredLightColorTheme": "Adwaita Light",
    "window.titleBarStyle": "native",
    "window.menuBarVisibility": "toggle", // Menu bar will be hidden until you press Alt
    "breadcrumbs.enabled": false,
    "editor.renderLineHighlight": "none",
    "workbench.iconTheme": null,
    "workbench.tree.indent": 12,
    "workbench.colorTheme": "Adwaita Dark & colorful status bar",
}
piousdeer commented 2 years ago

VSCode can't theme the title bar when titleBarStyle is native. Enable adw-gtk3-dark: gsettings set org.gnome.desktop.interface gtk-theme adw-gtk3-dark

YousefSaber commented 2 years ago

@piousdeer alright I fixed it I changed some settings.

    "window.titleBarStyle": "custom",

image