Actually the instructions for changing the log-in screen background are very clear and distinct. So, I don't think I made anything wrong. First I copied my desired image here /usr/share/backgrounds/drawing.png
.
I opened this ( /usr/share/gnome-shell/theme/ubuntu.css
) as a super user and I replaced
#lockDialogGroup {
background: #2c001e url(file:///org/something_path);
background-repeat: repeat;
}
with this
#lockDialogGroup {
background: #2c001e url(file:///usr/share/backgrounds/drawing.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
and saved successfully. Then I rebooted but the background is not changed. But when I put anyother color code instead of #2c001e
the color gets changed. Please help me to understand what and why is wrong with the changing of background image?