aboutsummaryrefslogtreecommitdiff
path: root/swaymsg
diff options
context:
space:
mode:
authorJason Nader <jason.nader@protonmail.com>2020-06-13 12:32:24 +0900
committerBrian Ashworth <bosrsf04@gmail.com>2020-06-14 00:55:14 -0400
commit45859be03f14fa0506ab8518feaec5ddb157e318 (patch)
treee838990235ecf0a4f543999ea292c0c5167957df /swaymsg
parentf9361ae36c586d78db34307f538508ab0dd8f486 (diff)
i3-compat: add GET_BINDING_STATE IPC command
Diffstat (limited to 'swaymsg')
-rw-r--r--swaymsg/main.c2
-rw-r--r--swaymsg/swaymsg.1.scd3
2 files changed, 5 insertions, 0 deletions
diff --git a/swaymsg/main.c b/swaymsg/main.c
index f9d3515a..38976f9c 100644
--- a/swaymsg/main.c
+++ b/swaymsg/main.c
@@ -440,6 +440,8 @@ int main(int argc, char **argv) {
type = IPC_GET_VERSION;
} else if (strcasecmp(cmdtype, "get_binding_modes") == 0) {
type = IPC_GET_BINDING_MODES;
+ } else if (strcasecmp(cmdtype, "get_binding_state") == 0) {
+ type = IPC_GET_BINDING_STATE;
} else if (strcasecmp(cmdtype, "get_config") == 0) {
type = IPC_GET_CONFIG;
} else if (strcasecmp(cmdtype, "send_tick") == 0) {
diff --git a/swaymsg/swaymsg.1.scd b/swaymsg/swaymsg.1.scd
index 515d745f..b8a38b54 100644
--- a/swaymsg/swaymsg.1.scd
+++ b/swaymsg/swaymsg.1.scd
@@ -80,6 +80,9 @@ _swaymsg_ [options...] [message]
*get\_binding\_modes*
Gets a JSON-encoded list of currently configured binding modes.
+*get\_binding\_state*
+ Gets JSON-encoded info about the current binding state.
+
*get\_config*
Gets a JSON-encoded copy of the current configuration.