📅  最后修改于: 2023-12-03 15:09:01.917000             🧑  作者: Mango
在UBUNTU中,你可以通过Shell-Bash来更改应用程序菜单中图标的大小。下面是具体步骤:
打开 Shell-Bash,或者按下 Ctrl+Alt+T
组合键打开 Terminal 应用程序。
输入以下命令:
sudo nano /usr/share/themes/Adwaita/gtk-3.0/apps/unity.css
这将打开 unity.css
文件。在文件中找到以下代码行:
/* ----------- Unity Dash ------------- */
.unity-dash .scrolled-windows > box > .scroller { /* The dash's scroller */
-UnityScrollbar-width: 0; /* The width of the dash's scrollbar */
-UnityDashPageButton-width: 26px; /* The width of the pager buttons */
}
.unity-dash .category .header .title { /* The category titles */
font-size: 12px; /* The font size */
margin-bottom: 6px; /* The bottom margin */
margin-top: 0; /* The top margin */
font-weight: bold; /* The font weight */
text-shadow: none; /* Remove shadows */
color: #afafaf; /* The color of the text */
}
.unity-dash .category .header .count { /* The category item count */
font-size: 12px; /* The font size */
margin-left: 2px; /* the left margin */
text-shadow: none; /* Remove shadows */
color: #afafaf; /* The color of the text */
}
.unity-dash .category .header .icon { /* The category icon */
width: 16px; /* the icon width */
height: 16px; /* the icon height */
margin-right: 6px; /* the right margin */
margin-top: 1px; /* the top margin */
margin-bottom: -2px; /* the bottom margin */
fill: #afafaf; /* the color of the icon */
}
.unity-dash .category .items { /* The category items */
padding: 6px 0 6px 0; /* The padding */
border-top: none; /* The top border */
}
.unity-dash .category .item { /* The category item */
padding-left: 6px; /* The left padding */
padding-right: 6px; /* The right padding */
margin-bottom: 6px; /* The bottom margin */
}
.unity-dash .category .item .title,
.unity-dash .category .item:active .title,
.unity-dash .category .item:selected .title { /* The item title */
font-size: 12px; /* The font size */
font-weight: normal; /* The font weight */
color: #afafaf; /* The color of the text */
text-shadow: none; /* Remove shadows */
}
.unity-dash .category .item .description { /* The item description */
font-size: 11px; /* The font size */
margin-top: 1px; /* The top margin */
margin-bottom: 5px; /* The bottom margin */
color: #afafaf; /* The color of the text */
text-shadow: none; /* Remove shadows */
}
.unity-dash .category .item .icon { /* The item icon */
width: 48px; /* the icon width */
height: 48px; /* the icon height */
margin-right: 6px; /* the right margin */
fill: #afafaf; /* the color of the icon */
}
.unity-dash .category .item .icon img { /* The item icon image */
max-width: 48px; /* the max width of the icon image */
max-height: 48px; /* the max height of the icon image */
}
找到以下代码行:
.unity-dash .category .item .icon { /* The item icon */
width: 48px; /* the icon width */
height: 48px; /* the icon height */
margin-right: 6px; /* the right margin */
fill: #afafaf; /* the color of the icon */
}
将 width
和 height
属性的值更改为所需的像素大小,如:
.unity-dash .category .item .icon { /* The item icon */
width: 64px; /* the icon width */
height: 64px; /* the icon height */
margin-right: 6px; /* the right margin */
fill: #afafaf; /* the color of the icon */
}
注意,如果你不确定要使用的大小,请首先尝试 48px
大小,然后根据需要调整大小值。
按 Ctrl+X
,然后输入 Y
保存更改并退出编辑器。
输入以下命令:
setsid unity
这将重新启动 Unity 桌面环境并应用更改。
现在,你可以在应用程序菜单中看到更改后的图标大小。
总结:
这就是在应用程序菜单中更改图标大小的方法。首先打开 Shell-Bash,然后编辑 unity.css
文件,找到要更改的代码行并更改大小值,最后保存并退出,然后重启 Unity。