aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Simon Ser <contact@emersion.fr>2022-06-23 20:50:16 +0200
committerLibravatar Kirill Primak <vyivel@eclair.cafe>2022-07-04 21:58:24 +0300
commit11e05c57115e7f0e915e80f006468b7e1af4373b (patch)
tree45ef663160673d0ff79dd50c33b78a096a376442
parentReuse parsed PangoFontDescription (diff)
downloadsway-11e05c57115e7f0e915e80f006468b7e1af4373b.tar.gz
sway-11e05c57115e7f0e915e80f006468b7e1af4373b.tar.zst
sway-11e05c57115e7f0e915e80f006468b7e1af4373b.zip
ipc: add "power" to output reply
-rw-r--r--sway/ipc-json.c3
-rw-r--r--sway/sway-ipc.7.scd5
2 files changed, 7 insertions, 1 deletions
diff --git a/sway/ipc-json.c b/sway/ipc-json.c
index f52a5ecd..287c158d 100644
--- a/sway/ipc-json.c
+++ b/sway/ipc-json.c
@@ -277,6 +277,8 @@ static void ipc_json_describe_enabled_output(struct sway_output *output,
277 json_object_object_add(object, "active", json_object_new_boolean(true)); 277 json_object_object_add(object, "active", json_object_new_boolean(true));
278 json_object_object_add(object, "dpms", 278 json_object_object_add(object, "dpms",
279 json_object_new_boolean(wlr_output->enabled)); 279 json_object_new_boolean(wlr_output->enabled));
280 json_object_object_add(object, "power",
281 json_object_new_boolean(wlr_output->enabled));
280 json_object_object_add(object, "layout", json_object_new_string("output")); 282 json_object_object_add(object, "layout", json_object_new_string("output"));
281 json_object_object_add(object, "orientation", 283 json_object_object_add(object, "orientation",
282 json_object_new_string( 284 json_object_new_string(
@@ -354,6 +356,7 @@ json_object *ipc_json_describe_disabled_output(struct sway_output *output) {
354 json_object_new_string(wlr_output->name)); 356 json_object_new_string(wlr_output->name));
355 json_object_object_add(object, "active", json_object_new_boolean(false)); 357 json_object_object_add(object, "active", json_object_new_boolean(false));
356 json_object_object_add(object, "dpms", json_object_new_boolean(false)); 358 json_object_object_add(object, "dpms", json_object_new_boolean(false));
359 json_object_object_add(object, "power", json_object_new_boolean(false));
357 360
358 json_object_object_add(object, "current_workspace", NULL); 361 json_object_object_add(object, "current_workspace", NULL);
359 362
diff --git a/sway/sway-ipc.7.scd b/sway/sway-ipc.7.scd
index 5cdcb99b..c7a2c473 100644
--- a/sway/sway-ipc.7.scd
+++ b/sway/sway-ipc.7.scd
@@ -213,7 +213,10 @@ following properties:
213: Whether this output is active/enabled 213: Whether this output is active/enabled
214|- dpms 214|- dpms
215: boolean 215: boolean
216: Whether this output is on/off (via DPMS) 216: (Deprecated, use _power_ instead) Whether this output is on/off (via DPMS)
217|- power
218: boolean
219: Whether this output is on/off
217|- primary 220|- primary
218: boolean 221: boolean
219: For i3 compatibility, this will be false. It does not make sense in Wayland 222: For i3 compatibility, this will be false. It does not make sense in Wayland