blob: b9769d7b74c4f745ea8241f46571e5e6af5a390e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!--
SPDX-FileCopyrightText: 2023 Deminder <tremminder@gmail.com>
SPDX-License-Identifier: GPL-3.0-or-later
-->
<node>
<interface name="org.gnome.shell.Extensions.ShutdownTimer">
<method name="ScheduleShutdown">
<arg type="b" direction="in" name="shutdown"/>
<arg type="s" direction="in" name="action"/>
</method>
<method name="ScheduleWake">
<arg type="b" direction="in" name="wake"/>
</method>
<method name="GetState">
<arg type="s" direction="out" name="state"/>
</method>
<signal name="OnMessage">
<arg type="s" direction="out" name="message"/>
</signal>
<signal name="OnStateChange">
<arg type="s" direction="out" name="state"/>
</signal>
<signal name="OnExternalChange"/>
</interface>
</node>
|