如何在Gnome Shell中将自定义启动器添加到收藏夹?


11

如何在gnome 3.8中将自定义启动器添加到收藏夹。我想赞一下

Answers:


18

有两种简单的方法:

  • 只需将应用程序图标从拖到左侧,即可创建收藏夹。
  • 右键单击任何应用程序图标,然后单击“添加到收藏夹”

这更加复杂,因此仅在您希望从终端完成某些操作时才应使用:

dconf read /org/gnome/shell/favorite-apps

将返回:

['firefox.desktop', 'chromium-browser.desktop', 'evolution.desktop', 'empathy.desktop', 'rhythmbox.desktop', 'shotwell.desktop', 'libreoffice-writer.desktop', 'nautilus.desktop', 'yelp.desktop']

在这里,您必须将其视为数组,因此必须知道应用程序.desktop文件的名称,即。gparted.desktop对于Gparted。复制相同的输出并添加所需的输出。

dconf write /org/gnome/shell/favorite-apps "['firefox.desktop', 'gparted.desktop', 'chromium-browser.desktop', 'evolution.desktop', 'empathy.desktop', 'rhythmbox.desktop', 'shotwell.desktop', 'libreoffice-writer.desktop', 'nautilus.desktop', 'yelp.desktop']"

这会将Gparted添加为我的收藏夹的第二个元素。请注意['application.desktop', 'application.desktop']每个项目之间以及每个项目之间的逗号和空格以及单引号之间的语法。


2
我还要补充一点,如果您要创建自己的* .desktop文件,则需要将其放在〜/ .local / share / applications下,以使其包含收藏夹。
李赞光

我的.desktop位于〜/ .local / share / applications中,但无济于事
Laurent
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.