0

I've customized my GDM theme and Gnome Shell theme in Ubuntu 20.04 (using Yaru as the base). To do this I have modified both /usr/share/gnome-shell/gnome-shell-theme.gresource and the files in /usr/share/themes for my new theme. My GDM screen background is the color I have specified, and the GDM, Gnome Shell, and Desktop themes are exactly as I want them.

However, when I log in, I see a purple screen for about a second, just before my desktop wallpaper is displayed.

This is the sequence of steps:

  1. I type my password and press Enter on the GDM login screen:
  2. I briefly see a dark (black) background
  3. Then I briefly see this purple background
  4. The desktop "expands" to cover the purple background.
  5. Then I see the full desktop (top bar, dock, and the wallpaper)

I've investigated both gdm3.css and gnome-shell.css and I did not see references to shades of purple or aubergine (either as hex or rgb values) in my modified files.

Does anyone know where this brief purple background color is coming from, so I can change/fix it?


Screenshots showing the sequence of steps:

(1) GDM Screen... enter image description here

(2) Dark (black) background... enter image description here

(3) Purple background... enter image description here

(4) Desktop "expanding"... enter image description here

(5) Desktop... enter image description here

Enterprise
  • 12,792

1 Answers1

0

You can see the default purple background by typing: $ gsettings list-recursively org.gnome.desktop.background which will print a whole lot of info, and the ones you are interested in are:

org.gnome.desktop.background primary-color '#2c001e' org.gnome.desktop.background secondary-color '#2c001e'

This '#2c001e' is the purple, and you can change it by typing:

$ gsettings set org.gnome.desktop.background primary-color '#3c39e3'