Answers:
有一种方法可以使图标变小,但是图标周围始终是54x54 px的背光,您不能缩小它,它是硬编码的。您可以执行以下操作:
调整大小图标的滑块-启动器在ubuntu-2d(Unity 2D)会话中不可用。因此,我假设您正在使用Unity 2D。
确定您使用的会话是
echo $DESKTOP_SESSION
终端中的命令。
如果要在Ubuntu-2d(Unity 2D)会话中调整启动器-图标的大小,则必须手动“破解”某些项目。
仔细阅读并仔细应用以下变更。
打开终端并执行
gksudo gedit /usr/share/unity-2d/shell/Shell.qml
找到此条目
LauncherLoader {
id: launcherLoader
anchors.top: parent.top
anchors.bottom: parent.bottom
width: 65
并将宽度更改为52。
保存-关闭,然后再次
gksudo gedit /usr/share/unity-2d/shell/common/IconTile.qml
找到条目
Image {
id: icon
objectName: "icon"
anchors.centerIn: parent
smooth: true
sourceSize.width: 48
sourceSize.height: 48
并将sourceSize.width和sourceSize.height更改为32
保存-关闭文件,然后再次
gksudo gedit /usr/share/unity-2d/shell/launcher/LauncherList.qml
找到部分
AutoScrollingListView {
id: list
Accessible.name: objectName
/* The spacing is explicitly set in order to compensate
the space added by selectionOutline and round_corner_54x54.png. */
spacing: -7
property int tileSize: 54
/* selectionOutline tile size, so AutoScrollingList view can calculate
the right height. */
property int selectionOutlineSize: 65
并将titeSize更改为40,并将selectionOutlineSize更改为52。
保存文件并注销-更改登录生效。
享受并注意,将来可能会(不确定)将这些值恢复为默认值。
之前在2012年3月在此描述了此过程:在Unity 2d Ubuntu 12.04中更改图标大小。
更新:
有一个小脚本可以更改Unity-2d启动器项目的大小。从论坛下载脚本(您需要登录才能下载文件)。
然后使文件可执行:
chmod +x script.py
使用脚本更改Unity-2D启动器项目的大小:
sudo script.py 32
在这里,我以32为例。您可以根据需要使用其他图标大小。
参考文献:
原始答案:
在撰写此答案时,无法轻松更改启动器图标的大小。Georgi的骇人听闻的方法是更改图标大小的最佳方法。
更改图标大小的功能仍未完全开发,希望能在12.04发行。
sudo /script.py 32
(然后注销并登录才能看到它)。
您可以在12.04中更改图标大小。转到论坛,然后在“桌面环境”论坛中查看有关此内容的文章。