13.04でランチャーのシャットダウンアイコンを作成したい。 Ubuntuの以前のバージョンでは、このデスクトップファイルを使用してランチャーに配置しました。
.local/share/applications/-indicator-session-shutdown.desktop
[Desktop Entry]
Name=Shut Down
TryExec=/usr/lib/indicator-session/gtk-logout-helper
Exec=/usr/lib/indicator-session/gtk-logout-helper --shutdown
Icon=system-shutdown
Terminal=false
Type=Application
OnlyShowIn=Unity;
Categories=System;
Version=1.0
X-Ubuntu-Gettext-Domain=indicator-session
かしら
/usr/lib/indicator-session/gtk-logout-helper --shutdown
13.04でも正しいコマンドです。
古いシャットダウンダイアログのスクリーンショットを次に示します。
新しいシャットダウンダイアログのスクリーンショットを次に示します。
試してください:
その他のオプション:
gnome-session-quit --help
マニュアルによると、次のオプションがサポートされています。
--logout
Prompt the user to confirm logout. This is the default behavior.
--power-off
Prompt the user to confirm system power off.
--reboot
Prompt the user to confirm system reboot.
--force
Ignore any inhibitors.
--no-Prompt
End the session without user interaction. This only works with
--logout.
またはdbus-monitorを見ると、これはコマンドです:
dbus-send --print-reply --dest="org.gnome.Shell" /org/gnome/SessionManager/EndSessionDialog org.gnome.SessionManager.EndSessionDialog.Open uint32:2 uint32:0 uint32:60 array:objpath:/org/gnome/SessionManager/EndSessionDialog
gnome-sesion-quit
は一般的な4つのオプションのダイアログのみを表示するため、その正確なダイアログを取得するには、dbusを使用するしかありません。これはdbus-monitor
を見るとわかりました。これはコマンドです:
dbus-send --print-reply --dest="org.gnome.Shell" /org/gnome/SessionManager/EndSessionDialog org.gnome.SessionManager.EndSessionDialog.Open uint32:2 uint32:0 uint32:60 array:objpath:/org/gnome/SessionManager/EndSessionDialog