如何减小所有 gnome-shell 图标的大小?

Mys*_*rio 6 gnome icons

是我还是 Gnome 3.2 中图标的大小很大?它使我的 1200*800 分辨率看起来像一个上网本界面。请问如何缩小图标大小?

Mar*_*obs 4

要在 GNOME Shell 中配置应用程序图标的布局,您必须修改/usr/share/gnome-shell/theme/gnome-shell.css. 请注意,此文件的内容可能会有所不同,因为它取决于您正在使用的特定主题。对于 Dark Glass 主题,以下是将应用程序概述中显示的图标的大小和布局减少 50% 所需的修改。

.icon-grid {
    spacing: 18px;                       /* was 36px */
    -shell-grid-item-size: 35px;         /* was 70px */
}

.all-app .icon-grid {
    -shell-grid-item-size: 59px;         /* was 118px */
}

.all-app .overview-icon {
    icon-size: 48px;                     /* was 96px */
}
Run Code Online (Sandbox Code Playgroud)

在这里阅读更多内容。