我的登录屏幕启动时Ubuntu 的紫色登录屏幕。暂停时,登录屏幕GNOME 的新版本,桌面背景模糊。我该如何摆脱 Ubuntu 的并且只有 GNOME?
- 设置应用程序显示:Ubuntu 20.04 LTS,GNOME 3.36.1。
/etc/X11/default-display-manager
读取/usr/sbin/gdm3
,但我不知道 Wayland 情况下的默认值是什么。sudo gdm3 --version
读取GDM 3.34.1
(为什么不是 3.36.1?)
注意:在 Ubuntu 的登录屏幕上,我可以选择 GNOME(我使用的)/GNOME Xorg/Ubuntu/Ubuntu Wayland。我感觉这很相关,我基本上想摆脱 Ubuntu 的一切(除了操作系统之外)和只保留 GNOME。
编辑:一段录像/截图一开始显示 GNOME 锁定屏幕,单击切换用户按钮后更改为 Ubuntu 锁定屏幕。
提前致谢。
答案1
好的..你的视频说得很清楚。
为了实现这一目标,您需要运行以下命令并为该文件选择相应的号码。/usr/share/gnome-shell/gnome-shell-theme.gresource
sudo update-alternatives --config gdm3-theme.gresource
示例输出:
$ sudo update-alternatives --config gdm3-theme.gresource
[sudo] password for admin:
There are 4 choices for the alternative gdm3-theme.gresource (providing /usr/share/gnome-shell/gdm3-theme.gresource).
Selection Path Priority Status
------------------------------------------------------------
0 /usr/share/gnome-shell/theme/Yaru/gnome-shell-theme.gresource 15 auto mode
1 /usr/local/share/gnome-shell/theme/blur.gresource 0 manual mode
2 /usr/local/share/gnome-shell/theme/focalgdm3.gresource 0 manual mode
* 3 /usr/share/gnome-shell/gnome-shell-theme.gresource 10 manual mode
4 /usr/share/gnome-shell/theme/Yaru/gnome-shell-theme.gresource 15 manual mode
Press <enter> to keep the current choice[*], or type selection number:
要从屏幕上删除“UbuntuLogo”图像,请打开文件/etc/gdm3/greeter.dconf-defaults
并导航到此部分。
# Login manager options
# =====================
[org/gnome/login-screen]
#logo='/usr/share/images/vendor-logos/logo-text-version-128.png'
并取消注释最后一行..它看起来应该像这样..
# Login manager options
# =====================
[org/gnome/login-screen]
logo=''
或者如果您希望放置自己的图像...
# Login manager options
# =====================
[org/gnome/login-screen]
logo='/home/admin/myubuntu.jpg'