答案1
原始帖子(更新如下):
理想情况下,应该有一个可以在 gnome-tweaks 中更改的 Yaru-dark shell 主题。
目前,您可以从源代码构建 Yaru-dark shell 主题。我仅在全新安装的 19.10 上对此进行了测试。
从源代码构建并安装 Yaru-dark gnome-shell 主题
- 安装 git
sudo apt update && sudo apt install git
- 克隆 yaru repo 并检出最新版本。
git clone https://github.com/ubuntu/yaru.git
cd yaru/
git checkout $(git describe --tags $(git rev-list --tags --max-count=1))
$variant
将gnome-shell.scss 中的变量从亮色改为暗色
sed -i 's/light/dark/g' gnome-shell/src/gnome-shell.scss
- 安装用于构建 yaru 的构建依赖项。注意:如果您在此处收到错误,请查看这。
sudo apt build-dep yaru-theme
- 建造 yaru
meson build
cd build
ninja
- 将新建的主题安装到用户主题目录中
mkdir -p ~/.themes/Yaru-dark/gnome-shell
cp gnome-shell/src/* ~/.themes/Yaru-dark/gnome-shell
- 现在使用 gnome-tweaks 将 shell 从默认更改为 Yaru-dark。如果启用了用户主题扩展,则可以在外观下找到它。您可能需要安装
gnome-shell-extensions
并重新启动才能使用户主题显示在 gnome-tweaks 中的扩展下。
更新:
新的合并到 master 中构建了浅色和深色外壳主题,并允许它们一起安装。请参阅这里了解合并详情。
更新后的步骤只是正常的开发构建说明,如上所述这里。
这篇文章的良好指南和参考这里。
答案2
您可以尝试“流行”主题。
sudo apt install pop-gnome-shell-theme
我认为“pop-dark-slim”和“Yaru-dark”搭配起来很好
编辑: 我正在运行 Ubuntu 18.04,我相信该主题在存储库中可用,但如果您的系统上没有该主题,则请先运行此命令:
sudo add-apt-repository ppa:system76/pop
笔记:您可能希望在安装后删除新添加的存储库:
sudo add-apt-repository -r ppa:system76/pop
(您也可以从来源 [GitHub])