gnome3程序图标下的文字如何改大

gnome-shell 字体更改

sudo gvim /usr/share/gnome-shell/theme/gnome-shell.css

应用程序列表字体太小:

.search-result-content > .overview-icon {
font-size: 10pt;
font-weight: bold;
}

Dash 的tooltip太小:

StTooltip StLabel {
font-size: 1em;
font-weight: bold;
}

改完后 alt+f2, r 回车应用

——————————————————————————————————

在/usr/share/gnome-shell/theme/gnome-shell.css中找到相应该项

.icon-grid .overview-icon {
icon-size: 80px; /*修改图标大小*/
font-size: 9pt !important;/*加入该行可修改文字大小*/
}

原文地址:https://www.cnblogs.com/kidfruit/p/2122896.html