blob: fb398fc85a0e31751bcf7af01804fb6010d266b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!--
SPDX-FileCopyrightText: 2024 dbus.gnome.org
SPDX-License-Identifier: GPL-3.0-or-later
-->
<node>
<interface name="org.gnome.SessionManager">
<method name="Inhibit">
<arg type="s" name="app_id" direction="in"/>
<arg type="u" name="toplevel_xid" direction="in"/>
<arg type="s" name="reason" direction="in"/>
<arg type="u" name="flags" direction="in"/>
<arg type="u" name="inhibit_cookie" direction="out"/>
</method>
<method name="Uninhibit">
<arg type="u" name="inhibit_cookie" direction="in"/>
</method>
<method name="Shutdown"/>
<method name="Reboot"/>
</interface>
</node>
|