11.10

11.10

是否可以将 Unity 2D 启动器图标设置得比默认尺寸更小或更大?

答案1

11.10

有一种方法可以让图标变小,但是图标周围有背光,背光始终为 54x54 像素,您无法缩小它,这是硬编码的。您可以这样做:在此处输入图片描述

答案2

12.04

更新

有一个小脚本可以更改 Unity-2d 启动器项目的大小。从以下位置下载脚本论坛(您需要登录才能下载文件)。

然后使文件可执行:

chmod +x script.py

使用脚本改变Unity-2D启动器项的大小:

sudo script.py 32

这里我以 32 为例。您可以根据需要使用其他图标大小。

参考:


原始答案

截至撰写此答案时,无法轻松更改启动器图标的大小。Georgi 的黑客方法是改变图标大小的最佳方法。

更改图标大小的功能尚未完全开发,希望它能在 12.04 中实现。

https://answers.launchpad.net/unity-2d/+question/175008

答案3

调整图标大小的滑块 - Launcher 在 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

并将 sourcesSize.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,将 choiceOutlineSize 更改为 52。

保存文件并注销 - 登录以使更改生效。

尽情享受吧,并且请注意,在未来的更新中,这些值可能会(不确定)恢复为默认值。

此过程之前已于 2012 年 3 月在此处描述在 Unity 2d Ubuntu 12.04 中更改图标大小

答案4

您可以在 12.04 中更改图标大小。转到论坛并在桌面环境论坛中查看我的帖子

http://ubuntuforums.org/showthread.php?t=1943423

相关内容