Answers:
请相应地进行更改/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/
发现了这一点:
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;
}
推荐编辑的帖子/usr/share/gnome-shell/theme/gnome-shell.css
是正确的;但是,应该注意的是,如果您使用备用的gnome-shell主题(例如,您正在运行Linux Mint),则可能会有其他可编辑文件。
例如,Mint12的“ Mint-Z”主题在中具有可配置的.css文件/usr/share/themes/Mint-Z
。
此外,gnome-shell扩展名可能具有位于/usr/share/gnome-shell/extensions/{extension id}/
或中的自己的可配置.css文件$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
@line 880中,并设置为8pt
。修改此值,然后在ALT+F2
提示符下使用“ rt”命令重新加载主题。
sudo gedit /usr/share/vte/termcap/xterm
编辑此行:
:co#80:it#8:li#24:\
资源:
infocmp xterm > xterm.ti
和tic xterm.ti
。)