diff options
author | Ted Gould <ted@gould.cx> | 2011-07-07 10:53:49 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-07-07 10:53:49 -0500 |
commit | c2f17c82ae4aee2cb3b584fcbeef15b0f36b2214 (patch) | |
tree | 40864efe02e1e4d7c548dcd49678b1fc52fc1524 /src/display-manager.xml | |
parent | 67a17a4d4d3d6380fe50c3cb6f33ccbb70707fd5 (diff) | |
parent | 5efc993ee40b4fb326a8b5bc9c1180eaef0a2469 (diff) | |
download | ayatana-indicator-session-c2f17c82ae4aee2cb3b584fcbeef15b0f36b2214.tar.gz ayatana-indicator-session-c2f17c82ae4aee2cb3b584fcbeef15b0f36b2214.tar.bz2 ayatana-indicator-session-c2f17c82ae4aee2cb3b584fcbeef15b0f36b2214.zip |
LightDM integration
Diffstat (limited to 'src/display-manager.xml')
-rw-r--r-- | src/display-manager.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/display-manager.xml b/src/display-manager.xml new file mode 100644 index 0000000..004eca1 --- /dev/null +++ b/src/display-manager.xml @@ -0,0 +1,17 @@ +<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"> +<node> + <interface name="org.freedesktop.DisplayManager"> + + <!-- Show greeter to allow new login / switch users --> + <method name="ShowGreeter"/> + + <!-- Switch to a user, starting a new display if required --> + <method name="SwitchToUser"> + <arg name="username" direction="in" type="s"/> + </method> + + <!-- Switch to the guest user --> + <method name="SwitchToGuest"/> + + </interface> +</node> |