web-dev-qa-db-ja.com

コマンドラインを使用してアプリケーションをgnomeクラシックパネルに追加しますか?

コマンドラインを使用して、gnome-classicのパネルにアプリケーションショートカットを追加するにはどうすればよいですか?

dconf watch /を使用して、手動で行ったときに何が起こっていたかを確認しましたが、自分でそれを再現しようとすると、

dmd@rossum:~ $ dconf write '/org/gnome/gnome-panel/layout/objects/test1234/object-iid' 'PanelInternalFactory::Launcher'
error: 0-1:unknown keyword

私はすぐにトラブルに遭遇します。

コマンドラインを使用してパネルにターミナルランチャーアイコンを追加するにはどうすればよいですか?

2
dmd
# add terminal launcher to the bar
dconf load /org/gnome/gnome-panel/layout/objects/terminal/ << EOT
[instance-config]
location='/usr/share/applications/gnome-terminal.desktop'

[/]
object-iid='PanelInternalFactory::Launcher'
pack-index=99
pack-type='end'
toplevel-id='top-panel'
EOT
dconf write /org/gnome/gnome-panel/layout/object-id-list "$(dconf read /org/gnome/gnome-panel/layout/object-id-list | sed "s/]/, 'terminal']/")"
2
dmd