81

How can I set up a keyboard shortcut that I can use instead of clicking this menu item?

Suspend

I have read about various terminal commands for suspending which I could easily assign to a keyboard shortcut, but all have required the use of sudo. I am looking for a solution that I can use on a system where I do not have administer privileges.

ijk
  • 607
ændrük
  • 76,794

6 Answers6

81

For Ubuntu 15.04. and later you can use from the terminal

systemctl suspend

Then create a shortcut in the settings/keyboard app with the same command.

key-sortcut

Easy!

Reason: Ubuntu switched from upstart to systemd.

Elder Geek
  • 36,023
  • 25
  • 98
  • 183
Alex1357
  • 1,122
31
  1. Install the powermanagement-interface package first, it provides the pmi command we will use to suspend.
    UPDATE: I looked at the source for pmi and the command it uses to suspend is:

    dbus-send --system --print-reply --dest="org.freedesktop.UPower" /org/freedesktop/UPower org.freedesktop.UPower.Suspend
    

    If you can't install pmi, replace pmi action suspend with that command in the next step.

  2. Open up System -> Preferences -> Keyboard Shortcuts, click on Add and put pmi action suspend as the command.

    alt text

  3. Click on the newly created shortcut entry, and set the shortcut keys.

    alt text

hirsch
  • 181
Isaiah
  • 59,344
  • 5
    On Precise I had to apt-get install hal but working nicely now. – Cas Aug 10 '12 at 22:16
  • 6
    Doesn't work for me in 14.04 – metakermit Aug 09 '14 at 12:44
  • 1
    found the answer on this question, using the full command for suspend as the shortcut action, on Ubuntu 15.10 http://askubuntu.com/questions/454039/what-command-is-executed-when-shutdown-from-the-graphical-menu-in-14-04 – Nick Jan 29 '16 at 11:15
  • 2
    Suspend command that worked for me on 16.04 LTS was dbus-send --system --print-reply --dest=org.freedesktop.login1 /org/freedesktop/login1 "org.freedesktop.login1.Manager.Suspend" boolean:true – Max Goodridge Apr 04 '17 at 03:17
  • @MaxGoodridge awesome! Oddly enough .Hibernate instead of suspend requires root... – Ufos Jun 15 '18 at 14:17
9

Same as above, but use this command instead:

dbus-send --system --print-reply --dest=org.freedesktop.login1 /org/freedesktop/login1 "org.freedesktop.login1.Manager.Suspend" boolean:true

Source: http://forum.ubuntu-fr.org/viewtopic.php?pid=16497311#p16497311

Chrisky
  • 211
  • 2
  • 3
4

systemctl suspend -i worked for me.

Mapped to super+d in the Keyboard settings custom shortcuts.

2

With Ubuntu 16.04 LTS an newer I would suggest using systemctl instead because newer systems use systemd to control things.

The safe command to run is systemctl suspend which suspends the machine immediately unless some process is asking the system to stay powered (e.g. video player showing a movie, active CD burner, another logged in user doing anything, etc).

If you want to force suspend immediately and ignore all "inhibitors" simply add -i as explained by the output of the above command.

If you want to immediately lock the screensaver and suspend the system in all cases, you can run

loginctl lock-session && systemctl suspend -i

This is better than using raw dbus to send messages because using loginctl and systemctl avoids hardcoding any info about your screensaver or session manager.

0

Here a exaple how to create keyboard shortcut to suspend the system by pressing <Super> + s keys:

gsettings set org.gnome.settings-daemon.plugins.media-keys suspend "['<Super>s']"

or create a custom keybinding:

gsettings set org.gnome.settings-daemon.plugins.media-keys custom-keybindings "['/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/']"
gsettings set org.gnome.settings-daemon.plugins.media-keys.custom-keybinding:/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/ name 'suspend'
gsettings set org.gnome.settings-daemon.plugins.media-keys.custom-keybinding:/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/ command 'systemctl suspend'
gsettings set org.gnome.settings-daemon.plugins.media-keys.custom-keybinding:/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/ binding '<Super>p'
panticz
  • 1,718