cma*_*.fr 5 fonts gnome-shell desktop-icons 19.10
我正在搜索如何在 Ubuntu 19.10 GNOME(标准)版上自定义桌面图标字体大小。例如,我想要 8px。
使用 18.04,它就像
gsettings set org.gnome.nautilus.desktop font 'Ubuntu 8'
Run Code Online (Sandbox Code Playgroud)
在 19.10 上,没有org.gnome.nautilus.desktopschemadir。我搜索了所有参数gsettings list-recursively和dconf dump /,找不到与桌面图标字体相关的任何内容。
作为管理员或系统范围的
编辑文件 /usr/share/gnome-shell/extensions/desktop-icons@csoriano/stylesheet.css
.name-label {
text-shadow: 1px 1px black;
color: green;
text-align: center;
font-size: 40px;
}
Run Code Online (Sandbox Code Playgroud)
我已经编辑了上面的部分。我添加了该行font-size: 40px;并将颜色更改为绿色。
另一个自定义图像:
对于本地更改(不需要 root 权限)
关注这篇文章并在stylesheet.css文件中编辑如下内容。
.name-label {
text-shadow: 1px 1px black;
font-size: 40px;
}
Run Code Online (Sandbox Code Playgroud)