如何更改Unity 2D启动器图标的大小?


Answers:



6

调整大小图标的滑块-启动器在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中更改图标大小


5

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


这对我有用-尽管我必须这样做sudo /script.py 32(然后注销并登录才能看到它)。
迈克尔·杜兰特

...即使我已经做了chmod + x,它在更新后也被重置了,所以可能做了几次。
Michael Durrant 2012年

每次更新都会覆盖您编辑的文件。因此,您需要每次修改图标。
jokerdino

1
@souravc链接可以,您只需登录即可下载。或只需单击此处下载。
米奇

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.