我尝试使用gnome-shell --replace
命令在 Ubuntu 中使用 gnome-shell。它运行良好,但我认为 shell 面板中的字体大小太大。
可以在 gnome-shell 面板中自定义字体大小吗?
答案1
请相应更改/usr/share/gnome-shell/theme/gnome-shell.css
。例如,如果您想更改面板字体,您可以添加font-family: "FontName"
到.panel-button
。您还可以进一步自定义仪表板的字体等。
您可以查看我关于自定义 gnome-shell 的博客文章:http://joneslee85.wordpress.com/2010/02/28/howto-customize-gnome-shell-theme/
答案2
发现了这个:
cd /usr/share/gnome-shell/theme
sudo gedit gnome-shell.css
我尝试了 gnome-shell.css 文件中的某些设置,经过反复尝试,成功增加了应用程序图标下方文本的大小。在第 638 行,我将字体大小从 7.5pt 增加到 11.5pt,使其更具可读性。代码:
.app-well-app > .overview-icon,
.remove-favorite > .overview-icon,
.search-result-content > .overview-icon {
border-radius: 4px;
padding: 3px;
border: 1px rgba(0,0,0,0);
font-size: 7.5pt;
color: white;
transition-duration: 100;
text-align: center;
}
我还决定减小图标的尺寸。
.icon-grid .overview-icon {
icon-size: 96px;
}
答案3
建议编辑的帖子/usr/share/gnome-shell/theme/gnome-shell.css
是正确的;但是,应该注意,如果您使用备用 gnome-shell 主题(例如,您正在运行 Linux Mint),则可能会有其他可编辑文件。
例如,Mint12 的“Mint-Z”主题在 中有可配置的 .css 文件/usr/share/themes/Mint-Z
。
此外,gnome-shell 扩展可能有自己的可配置 .css 文件,位于/usr/share/gnome-shell/extensions/{extension id}/
或$HOME/.local/share/gnome-shell/extensions/{extension id}/
。但我不确定这些设置是否可以覆盖主题默认值。
编辑:@Guilherme 确实回答了你的问题。
仅供参考 在我的系统 ( gnome-shell 3.2.1-0ubuntu1
) 上,相应的 css 选择器位于/usr/share/gnome-shell/theme/gnome-shell.css
,第 720 行,并设置为7.5pt
。但是,我的 Mint12 系统的实际设置位于/usr/share/themes/Mint-Z/gnome-shell.css
,第 880 行,并设置为8pt
。修改此值,然后使用提示符下的“rt”命令重新加载主题ALT+F2
。
答案4
sudo gedit /usr/share/vte/termcap/xterm
编辑此行:
:co#80:it#8:li#24:\
来源: