我在我的新计算机上安装了新版本,我想通过修改/usr/share/gnome-shell/theme/ubuntu.css文件来更改我之前在 18.04 LTS 版本中完成的锁屏背景,但在这个新版本中它已更改为,/usr/share/gnome-shell/theme/gnome-shell.css并且我#lockDialogGroup从中修改了选择器:
#lockDialogGroup {
background: #2e3436 url(resource:///org/gnome/shell/theme/noise-texture.png);
background-repeat: repeat;
Run Code Online (Sandbox Code Playgroud)
对此:
#lockDialogGroup {
background-image: url(file:///home/mauriciogtz/Pictures/Wallpaper.jpg);
background-repeat: no-repeat;
background-size: cover;;
background-position: center; }
Run Code Online (Sandbox Code Playgroud)
但我无法让它工作,我已经重新启动了我的电脑。