14

I would like to use a gesture to shutdown/restart my computer and I need to know the command that launches the shutdown dialog:

enter image description here

Isaiah
  • 59,344

3 Answers3

14

/usr/lib/indicator-session/gtk-logout-helper can be used to open the following dialogs:

  • Log Out (/usr/lib/indicator-session/gtk-logout-helper --logout)

    enter image description here

  • Restart (/usr/lib/indicator-session/gtk-logout-helper --restart)

    enter image description here

  • Shutdown (/usr/lib/indicator-session/gtk-logout-helper --shutdown)

    enter image description here

Isaiah
  • 59,344
8

To prompt only the shutdown/restart dialog, run the following command:

gnome-session-quit --reboot

Details on binding this on Ctrl-Alt-Del here.

lmeurs
  • 207
Simion Agavriloaei
  • 398
  • 1
  • 4
  • 8
5

In Gnome Shell if I try /usr/lib/indicator-session/gtk-logout-helper --shutdown I obtain the dialog in the screenshot you provided, but when I click on Shut Down I receive another dialog (similar to the first). Only after a second confirm my system shuts down.

This method reaches the second dialog directly via command line?

gnome-session-quit --power-off
Kazark
  • 698
jasmines
  • 11,011