From 6de0e0e500d9d534c6e4baab242fc2a146f021fa Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 30 May 2012 21:40:32 +0200 Subject: logind: rework button setting semantics If a graphical session without full DE that handles power/suspend events is used this can now be controlled by logind instead, optionally. --- src/login/logind-button.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/login/logind-button.h') diff --git a/src/login/logind-button.h b/src/login/logind-button.h index 0378211325..7518d05ccb 100644 --- a/src/login/logind-button.h +++ b/src/login/logind-button.h @@ -25,9 +25,11 @@ typedef struct Button Button; typedef enum HandleButton { - HANDLE_NO, - HANDLE_YES, /* only if no inhibitor is taken/no session is around */ - HANDLE_ALWAYS, /* regardless if inhibitor is taken/session is around */ + 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_BUTTON_MAX, _HANDLE_BUTTON_INVALID = -1 } HandleButton; -- cgit v1.2.3-54-g00ecf