回答:
新しく作成されたユーザーのランチャーにピン留めされたアプリケーションを表示するには、新しいオーバーライドを設定してデフォルト設定スキーマを変更できます。
ファイル/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/