18.04--如何保留登录时的锁屏背景?

18.04--如何保留登录时的锁屏背景?

我的锁屏壁纸非常漂亮。但是当我按 Enter 键登录时,它被难看的纯紫色背景所取代。如何在登录时保留壁纸图像(就像在 Windows 10 上一样)?

这是标准 GNOME 桌面环境。

答案1

将要使用的图像复制到/usr/share/gnome-shell/theme/ 文件夹。例如:/usr/share/gnome-shell/theme/my_image_name.png

然后:

sudo gedit /usr/share/gnome-shell/theme/ubuntu.css

或者在某些情况下:

sudo gedit /usr/share/gnome-shell/theme/gnome-shell.css

搜索以下部分:

#lockDialogGroup {
  background: #2e3436 url(resource:///org/gnome/shell/theme/noise-texture.png);
  background-repeat: no-repeat;

改变

background: #2e3436 url(resource:///org/gnome/shell/theme/noise-texture.png);

background: #2e3436 url(my_image_name.png);

(如果你将图片复制到/usr/share/gnome-shell/theme/喜欢/usr/share/gnome-shell/theme/my_image_name.png)。

或者,您也可以简单地设置一种颜色(不使用壁纸或纹理):

background: #2e3436;

设置background-repeatrepeatno-repeat。如果您的图像是纹理,请将其设置为repeat。如果是壁纸:no-repeat

重启。

相关内容