我在新电脑上安装了新版本,我想更改锁屏背景,我之前在 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; }
但我无法让它工作并且我已经重新启动了计算机。
答案1
在 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 的背景
答案2
答案3
关于此提示的一些说明。以我为例,Ubuntu 19.04(5 月 22 日),我需要在文件名图像上使用引号。下图与/usr/share/gnome-shell/theme/Yaru/gnome-shell.css
文件位于同一文件夹中。
#lockDialogGroup {
background-image: url("ironman_login_wallpaper.jpg");
background-repeat: no-repeat;
background-size: cover;;
background-position: center; }