diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-09-19 13:10:10 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-09-19 13:10:10 +0200 |
commit | beaafb2ea6be591882aef21fe19b88e3b2461087 (patch) | |
tree | a61b375510b84f6b43bccfde4bbe0d46372aece5 /src/login/logind-button.h | |
parent | 468b21de7c9327bb8747d36e6273ed7aed97052a (diff) |
logind: rework power key/suspend key/lid switch handling
http://lists.freedesktop.org/archives/systemd-devel/2012-September/006604.html
https://bugzilla.gnome.org/show_bug.cgi?id=680689
This changes the meaning of the
HandlePowerKey=/HandleSleepKey=/HandleLidSwitch= setting of logind.conf
Diffstat (limited to 'src/login/logind-button.h')
-rw-r--r-- | src/login/logind-button.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/login/logind-button.h b/src/login/logind-button.h index 7518d05ccb..dd6582e4bb 100644 --- a/src/login/logind-button.h +++ b/src/login/logind-button.h @@ -25,11 +25,13 @@ typedef struct Button Button; typedef enum HandleButton { - HANDLE_OFF, - HANDLE_NO_SESSION, /* Only handle key when nobody is logged in; honour inhibitors */ - HANDLE_TTY_SESSION, /* Only handle key when nobody is logged in, or the fg session is the only one and non-graphical; honour inhibitors */ - HANDLE_ANY_SESSION, /* Only handle key when nobody is logged in, or the fg session is the only one; honour inhibtors */ - HANDLE_ALWAYS, /* Always handle, ignore sessions; ignore inhibitors */ + HANDLE_IGNORE, + HANDLE_POWEROFF, + HANDLE_REBOOT, + HANDLE_HALT, + HANDLE_KEXEC, + HANDLE_SUSPEND, + HANDLE_HIBERNATE, _HANDLE_BUTTON_MAX, _HANDLE_BUTTON_INVALID = -1 } HandleButton; |