How to get default (vanilla) GNOME shell theme in Ubuntu 18.04 after update?

8,393

It seems you've logged into an (default) Ubuntu session somehow instead of a (vanilla) GNOME session.

To do that when you boot your system and get to the GDM login screen you should find a cogwheel (⚙️) next to the sign in button. If you click on the cogwheel you should find an GNOME (and GNOME on Xorg) option. Select it and log in.

If you want to adapt my answer from the post you linked, you need add the following line to the created gnome-shell.css file

@import url("/usr/share/gnome-shell/theme/gnome-shell.css");

instead of the

@import url("/usr/share/gnome-shell/theme/ubuntu.css");

line.

As suggested by the author of question @Crantisz, to make the topbar always opaque, add the following to the created gnome-shell.css file.

@import url("/usr/share/gnome-shell/theme/gnome-shell.css");

#panel {
  background-color: rgba(0, 0, 0, 1);
}
Share:
8,393

Related videos on Youtube

Crantisz
Author by

Crantisz

Updated on September 18, 2022

Comments

  • Crantisz
    Crantisz over 1 year

    I have updated Ubuntu 18.04 over Ubuntu GNOME 16.04.

    How to get default GNOME shell theme in Ubuntu 18.04 after update?

    This is that I have now:

    enter image description here

    This is that I want to get (black topbar and round corners):

    enter image description here

    I've tried all things (from this post):

    sudo apt install gnome-session
    sudo apt install ubuntu-gnome-default-settings
    sudo apt install vanilla-gnome-default-settings vanilla-gnome-desktop
    sudo apt install ubuntu-gnome-desktop 
    

    It gets default gtk-theme, gdm-theme, icons, but shell theme still from Ubuntu.

    This also doesn't work.

  • Mouagip
    Mouagip over 5 years
    Thanks a lot for mentioning ubuntu.css as the default Ubuntu theme. I've spent ages looking for the file where the default theme comes from.