如何让启动器中固定的应用程序对所有用户显示?

如何让启动器中固定的应用程序对所有用户显示?

我需要在 Unity 启动器中固定一个应用程序,以便所有用户都可以看到它。

目前,我所做的一切更改似乎只会影响本地用户。

答案1

为了使新创建的用户在启动器中看到固定的应用程序,您可以通过设置新的覆盖来更改默认设置模式:

创建文件/usr/share/glib-2.0/schemas/10_local-unity-launcher.gschema.override并插入以下代码(.desktop文件存储在/usr/share/applications/):

[com.canonical.Unity.Launcher]
favorites=['pinned-application1.desktop', 'pinned-application2.desktop']

您必须插入所有已固定的应用程序。/usr/share/glib-2.0/schemas/com.canonical.Unity.gschema.xml通过搜索设置架构和键来查看默认值:

        <schema path="/desktop/unity/launcher/" id="com.canonical.Unity.Launcher" gettext-domain="unity">
    <key type="as" name="favorites">
      <default>DEFAULT_VALUES</default>

然后重新编译模式文件/usr/share/glib-2.0/schemas/gschemas.compiled(由 gsettings 使用):

sudo glib-compile-schemas /usr/share/glib-2.0/schemas/

相关内容