diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-06-15 15:37:39 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-06-21 19:29:45 +0200 |
commit | f401e48c2db22ff9d1a05885b5599bebf19c2707 (patch) | |
tree | 4d5539b34a5e4d207abb96f9531a0d4e86edf659 /src/logind-session-dbus.c | |
parent | 34ca941cec76bbfdfd02c705b76bc1b53ea2bcd1 (diff) |
mechanisms: add mechanisms to change system locale and clock
Diffstat (limited to 'src/logind-session-dbus.c')
-rw-r--r-- | src/logind-session-dbus.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/logind-session-dbus.c b/src/logind-session-dbus.c index 41af65858e..539384b7d4 100644 --- a/src/logind-session-dbus.c +++ b/src/logind-session-dbus.c @@ -30,9 +30,16 @@ " <interface name=\"org.freedesktop.login1.Session\">\n" \ " <method name=\"Terminate\"/>\n" \ " <method name=\"Activate\"/>\n" \ + " <method name=\"Lock\"/>\n" \ + " <method name=\"Unlock\"/>\n" \ + " <method name=\"SetIdleHint\">\n" \ + " <arg name=\"b\" type=\"b\"/>\n" \ + " </method>\n" \ " <property name=\"Id\" type=\"u\" access=\"read\"/>\n" \ " <property name=\"User\" type=\"(uo)\" access=\"read\"/>\n" \ " <property name=\"Name\" type=\"s\" access=\"read\"/>\n" \ + " <property name=\"Timestamp\" type=\"t\" access=\"read\"/>\n" \ + " <property name=\"TimestampMonotonic\" type=\"t\" access=\"read\"/>\n" \ " <property name=\"ControlGroupPath\" type=\"s\" access=\"read\"/>\n" \ " <property name=\"VTNr\" type=\"u\" access=\"read\"/>\n" \ " <property name=\"Seat\" type=\"(so)\" access=\"read\"/>\n" \ @@ -48,6 +55,9 @@ " <property name=\"Controllers\" type=\"as\" access=\"read\"/>\n" \ " <property name=\"ResetControllers\" type=\"as\" access=\"read\"/>\n" \ " <property name=\"KillProcesses\" type=\"b\" access=\"read\"/>\n" \ + " <property name=\"IdleHint\" type=\"b\" access=\"read\"/>\n" \ + " <property name=\"IdleSinceHint\" type=\"t\" access=\"read\"/>\n" \ + " <property name=\"IdleSinceHintMonotonic\" type=\"t\" access=\"read\"/>\n" \ " </interface>\n" #define INTROSPECTION \ |