我在我的新电脑上安装了新版本,我想更改锁屏背景,我之前在 18.04 LTS 版本中通过修改/usr/share/gnome-shell/theme/ubuntu.css
文件来完成此操作,但在这个新版本中,它已更改为/usr/share/gnome-shell/theme/gnome-shell.css
并且我修改了#lockDialogGroup
选择器:
#lockDialogGroup {
background: #2e3436 url(resource:///org/gnome/shell/theme/noise-texture.png);
background-repeat: repeat;
对此:
#lockDialogGroup {
background-image: url(file:///home/mauriciogtz/Pictures/Wallpaper.jpg);
background-repeat: no-repeat;
background-size: cover;;
background-position: center; }
但我无法让它工作,我已经重新启动了我的电脑。
在 Ubuntu 19.04
该文件
/usr/share/gnome-shell/theme/Yaru/gnome-shell.css
将执行您要查找的操作。2020 年 1 月 10 日编辑
您还可以在此页面上详细查看https://github.com/PRATAP-KUMAR/login-lock-screen-bg-change以通过脚本为 Ubuntu 18.04、19.04 和 19.10 设置背景
您可以通过设置更改锁屏壁纸
关于提示的一些说明。就我而言,5 月 22 日的 Ubuntu 19.04,我需要在文件名图像上使用引号。下图与文件位于同一文件夹
/usr/share/gnome-shell/theme/Yaru/gnome-shell.css
中。您也可以修改文件
/etc/alternatives/gdm3.css
。