我正在使用 Ubuntu Gnome 16.04.1,想调整仪表板中的图标大小。因此,我想编辑文件 /usr/share/gnome-shell/themes/gnome-shell.css
该文件不存在,而是文件“gnome-shell.css.save”,我无法打开它。有什么想法吗?
这是更改图标大小的正确文件吗?我说的不是桌面图标,而是破折号上的图标。
我知道有很多类似的问题,但我谷歌搜索了一整晚都没能找到正确的答案。
多谢。
答案1
您可以在此处获取默认 shell css 的副本:
https://raw.githubusercontent.com/GNOME/gnome-shell/master/data/theme/gnome-shell.css
您确实可以以此为基础来覆盖默认的 shell 样式,例如增加字体大小。
获取用户主题扩展:
https://extensions.gnome.org/extension/19/user-themes/
创建目录:
mkdir $HOME/.themes/new-theme-name/gnome-shell
将 Gnome 基础文件复制到其中:
cd $HOME/.themes/new-theme-name/gnome-shell
wget https://raw.githubusercontent.com/GNOME/gnome-shell/master/data/theme/gnome-shell.css
将您想要的“覆盖”附加到文件的最末尾。
例如:
/* Increase font size here */
stage {
font-family: cantarell, sans-serif;
font-size: 14pt;
color: white;
}
使用调整工具切换到您的新主题。
我知道 OP 询问的是图标,但这应该是一个类似的过程。