当前位置: 首页>>技术问答>>正文


更改登录屏幕壁纸

, , ,

问题描述

我一直在尝试使用ubuntu-tweak将我的登录屏幕壁纸更改为我自己的壁纸。壁纸位于Ubuntu的默认壁纸文件夹中,我已经为所有用户提供了阅读权限。

现在登录屏幕上甚至没有留下壁纸。

最佳解决方案

通过尝试Senio的答案,我没有运气。但是经过一点修改我就赢了大奖:

sudo -i
xhost +SI:localuser:lightdm
su lightdm -s /bin/bash
gsettings set com.canonical.unity-greeter draw-user-backgrounds 'true'
gsettings set com.canonical.unity-greeter background 'path-to-image'
exit

path-to-image实际上是存储您想要作为登录屏幕壁纸的图像的路径,例如, :/usr/share/backgrounds/x.jpg

我测试了它,它正在工作

我找到了这个页面,它提供了一些关于这个问题的提示:Ubuntu13.04 LighDM

次佳解决方案

便宜又脏的解决方案:到终端,然后:

sudo nautilus

然后使用Nautilus将首选背景复制到

/usr/share/backgrounds/

然后将正在使用的图像重命名为backup-imagenameold.png然后将首选图像重命名为原始背景的文件名。

我知道它不干净或精益,但它尽快完成工作;)

干杯,吕塞尔

第三种解决方案

嗯..我尝试安装dconf-editor来改变那个背景。打开终端并输入此脚本..

sudo apt-get install dconf-editor

运行dconf-editor:

sudo dconf-editor

并显示窗口…打开com>规范> unity-greeter然后更改:

draw-user-backgrounds: 'true'
background: 'path-to-image'

第四种方案

它非常简单。

  1. 打开一个终端

  2. 成为root并更改当前文件夹

    sudo su
    cd /usr/share/backgrounds/
    
  3. 将图片文件复制到此位置

  4. 将文件名更改为warty-final-ubuntu.png

这将改变登录屏幕背景图像。

Source

第五种方案

我相信你要找的是:

sudo apt-get install lightdm-gtk-greeter
sudo vim /etc/lightdm/lightdm-gtk-greeter.conf

换行:

background=/usr/share/backgrounds/warty-final-ubuntu.png

无论你想要什么。希望这可以帮助

第六种方案

Canonical在Ubuntu 16.04中添加了对它的支持。看一下这个链接 – > https://help.ubuntu.com/16.04/ubuntu-help/user-changepicture.html

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/6497.html,未经允许,请勿转载。