回答:
システム設定(Gnome Control Center)に
カスタムアプリを追加するには、デスクトップエントリファイルを見つけて/usr/share/applications/{appname}.desktop
編集し、次のエントリが存在することを確認します。
Categories=Settings;X-GNOME-Settings-Panel;xxxxx;
X-GNOME-Settings-Panel={appname}
{appname}
システム設定に追加するアプリの名前に置き換えます。
アプリが表示されるセクションをxxxxx
決定します。これらの可能なオプションのいずれかと置き換えます:X-GNOME-PersonalSettings -Personal Section HardwareSettings -Hardware Section(プレフィックスX-GNOMEは使用されないことに注意してください)X-GNOME-SystemSettings -Systemセクションxxxxx
変更後、次のコマンドを実行します。
sudo update-desktop-database
これは、gnome-control-centerバージョン3.4.2-0ubuntu0.12を使用したUbuntu 12.04 LTS 12.04で試行およびテストされました。
注意事項:
~/.local/share/applications
ため、1人のユーザーだけのシステム設定にアプリを追加することはできません。gnome-control-center
gnome-control-center
X-GNOME-Settings-Panel;X-GNOME-SystemSettings;
はCategories
、追加して追加するX-GNOME-Settings-Panel=sample
だけで十分です。
現在、システム設定へのカスタム項目の追加は、GNOMEからのアップストリームをサポートしていません
Ubuntuは、システム設定にパッチgnome-control-center
を適用して、独自のUbuntu固有のエントリを含めることができるようにします。
長い話を短く、インストールする必要があるlibgnome-control-center-dev
と使用してGNOMEコントロールセンターのパッケージに対して構築されたアプリケーションのラッパーの作成libgnome-control-center-dev
のためにpkg-config
現在、それを追加するGUIメソッドはありません。Cを使用してプログラムで行う必要があり、Ubuntuでのみ機能します。
サードパーティのエントリ(パネルと呼ばれる)を許可しない理由は、David Zeuthenによって詳述されています。
> Thu, May 12, 2011 at 4:39 PM, Sergey Udaltsov wrote:
> My whole point was that in the ideal world GNOME could be extensible
> enough so that no _forking_ would be necessary. Extension modules, not
> patches. That would be not a side effect of the license but the
> fundamental feature of the architecture. Do you see the difference?
Yes. I also think we tried that with GNOME 2 and failed. I mean, look
at GNOME 2's control center - on all distros, it's a royal mess of
random crap from either GNOME, the distro or 3rd party app written by
a kid in a basement. With GNOME 3.2, we will have a simpler control
center (since the extension mechanism is going away) but it will be
_awesome_.
Ubuntu 14.04 ltsの@lancerからの回答の更新:
どこかのブログ投稿で読むことができたので、ubuntuチームからのgnome-system-settingsのフォークから来るかもしれません(どこで思い出せない..:/)
とにかく、次の2行は違いを示し、さらに徹底的な例が続きます
X-Unity-Settings-Panel={appname}
Categories=GNOME;GTK;Settings;X-Unity-Settings-Panel;xxxx;
例:
[Desktop Entry]
Encoding=UTF-8
Type=Application
Name=TefApp
Name[C]=TefApp
Exec=/home/stephaneag/Documents/ubuntu_CustomSystemSettingsEntryApp/dummyScript.sh
Comment[C]=dumb dummy app
StartupNotify=true
Icon=utilities-terminal
Terminal=false
NoDisplay=false
# the following is necessary for the .desktop to be accepted in System Settings
# for our stuff to appear in "System" section:
#Categories=GNOME;GTK;Settings;X-Unity-Settings-Panel;X-GNOME-SystemSettings;
# for our stuff to appear in "Hardware" section:
#Categories=GNOME;GTK;Settings;X-Unity-Settings-Panel;HardwareSettings;
# for our stuff to appear in the "Personal" section:
Categories=GNOME;GTK;Settings;X-Unity-Settings-Panel;X-GNOME-PersonalSettings;
OnlyShowIn=Unity;
グループを変更できるように、デフォルトのユーザープログラムをusers-adminに置き換える特定の詳細を含む14.04の更新。
users-adminを使用してgnomeシステムツールをインストールする
sudo apt-get install gnome-system-tools
Unity Control Centerに表示されないように古いユーザーのデスクトップを移動する
cd /usr/share/applications/
mv unity-user-accounts-panel.desktop unity-user-accounts-panel.desktop.ORIG
データベースを更新する
sudo update-desktop-database
これはUbuntu 14.04 LTSでテストされました。システムの更新が更新されたファイルに与える影響がわからない。次のアップグレード時に検査する必要があります。
/usr/share/applications/users.desktop:
[Desktop Entry]
Version=1.0
Name=Users and Groups
Comment=Add or remove users and groups
Exec=users-admin
Icon=config-users
Terminal=false
Type=Application
StartupNotify=true
Categories=GNOME;GTK;Settings;X-Unity-Settings-Panel;X-GNOME-SystemSettings;
OnlyShowIn=Unity;
X-Unity-Settings-Panel=users