diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:54:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:54:43 +0000 |
commit | e4283f6d48b98e764b988b43bbc86b9d52e6ec94 (patch) | |
tree | c8f7f7a6c2f5faa2942d27cefc6fd46cca492656 /data/dbus-interfaces/org.gnome.Shell.xml | |
parent | Initial commit. (diff) | |
download | gnome-shell-upstream/43.9.tar.xz gnome-shell-upstream/43.9.zip |
Adding upstream version 43.9.upstream/43.9upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | data/dbus-interfaces/org.gnome.Shell.xml | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/data/dbus-interfaces/org.gnome.Shell.xml b/data/dbus-interfaces/org.gnome.Shell.xml new file mode 100644 index 0000000..3ffb5c3 --- /dev/null +++ b/data/dbus-interfaces/org.gnome.Shell.xml @@ -0,0 +1,47 @@ +<node> + <interface name="org.gnome.Shell"> + <method name="Eval"> + <arg type="s" direction="in" name="script"/> + <arg type="b" direction="out" name="success"/> + <arg type="s" direction="out" name="result"/> + </method> + <method name="FocusSearch"/> + <method name="ShowOSD"> + <arg type="a{sv}" direction="in" name="params"/> + </method> + <method name="ShowMonitorLabels"> + <arg type="a{sv}" direction="in" name="params"/> + </method> + <method name="HideMonitorLabels"/> + <method name="FocusApp"> + <arg type="s" direction="in" name="id"/> + </method> + <method name="ShowApplications"/> + <method name="GrabAccelerator"> + <arg type="s" direction="in" name="accelerator"/> + <arg type="u" direction="in" name="modeFlags"/> + <arg type="u" direction="in" name="grabFlags"/> + <arg type="u" direction="out" name="action"/> + </method> + <method name="GrabAccelerators"> + <arg type="a(suu)" direction="in" name="accelerators"/> + <arg type="au" direction="out" name="actions"/> + </method> + <method name="UngrabAccelerator"> + <arg type="u" direction="in" name="action"/> + <arg type="b" direction="out" name="success"/> + </method> + <method name="UngrabAccelerators"> + <arg type="au" direction="in" name="action"/> + <arg type="b" direction="out" name="success"/> + </method> + <method name="ScreenTransition"/> + <signal name="AcceleratorActivated"> + <arg name="action" type="u"/> + <arg name="parameters" type="a{sv}"/> + </signal> + <property name="Mode" type="s" access="read"/> + <property name="OverviewActive" type="b" access="readwrite"/> + <property name="ShellVersion" type="s" access="read"/> + </interface> +</node> |