如何在Ubuntu 14.04的锁屏中删除圆点?


Answers:


24

手动进入dconf-editorcom.canonical.unity.unity-greeter取消选中该选项draw-grid。由于某种原因,这是可行的,而不是以前的命令行答案,我也尝试过。希望这可以帮助。


4
这是因为登录屏幕设置是lightdm用户的设置,而锁定屏幕设置属于实际用户。命令行解决方案将是gsettings set com.canonical.unity-greeter draw-grid false(不包括前两行)
S Prasanth 2014年

奇迹般有效。@ EdPaton-Williams:如果对您有用,请考虑通过单击左侧的对勾将其标记为可接受的答案。
Jez W 2014年

这行得通,但是首先您必须安装dconf-editor:sudo apt-get install dconf-tools askubuntu.com/questions/22313/…–
wordsforthewise

9

要删除白点,请在终端中运行以下命令:

sudo xhost +SI:localuser:lightdm
sudo su lightdm -s /bin/bash
gsettings set com.canonical.unity-greeter draw-grid false;exit

资料来源:http : //www.noobslab.com/2014/04/thingstweaks-to-do-after-install-of.html


1
感谢那。我前面没有我的Ubuntu机器,但我几乎可以肯定这仅用于登录屏幕。我已经尝试过这种方法,但是对于新的锁屏来说,点仍然在那里。
Ed Paton-Williams

1
我只运行了这一行,它就起作用了:gsettings设置了com.canonical.unity-greeter draw-grid false我不知道其他行应该做什么。
DavidW 2015年

在ubuntu 16.0.2上的锁屏上不起作用
wordforthewise

7

只需添加此答案(来自评论)即可轻松查看。这在14.04 LTS 锁定屏幕上对我有用。感谢S Prasanth的回答

gsettings set com.canonical.unity-greeter draw-grid false

要对登录屏幕执行相同的操作,必须以lightdm用户身份进行操作。可以通过@Fat Mind描述的方法来完成

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.