aboutsummaryrefslogtreecommitdiff
path: root/swaymsg/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'swaymsg/main.c')
-rw-r--r--swaymsg/main.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/swaymsg/main.c b/swaymsg/main.c
index a018a68e..596cf4ef 100644
--- a/swaymsg/main.c
+++ b/swaymsg/main.c
@@ -189,13 +189,14 @@ static void pretty_print_output(json_object *o) {
json_object_object_get_ex(o, "focused", &focused);
json_object_object_get_ex(o, "active", &active);
json_object_object_get_ex(o, "current_workspace", &ws);
- json_object *make, *model, *serial, *scale, *subpixel, *transform;
+ json_object *make, *model, *serial, *scale, *subpixel, *transform, *max_render_time;
json_object_object_get_ex(o, "make", &make);
json_object_object_get_ex(o, "model", &model);
json_object_object_get_ex(o, "serial", &serial);
json_object_object_get_ex(o, "scale", &scale);
json_object_object_get_ex(o, "subpixel_hinting", &subpixel);
json_object_object_get_ex(o, "transform", &transform);
+ json_object_object_get_ex(o, "max_render_time", &max_render_time);
json_object *x, *y;
json_object_object_get_ex(rect, "x", &x);
json_object_object_get_ex(rect, "y", &y);
@@ -215,7 +216,8 @@ static void pretty_print_output(json_object *o) {
" Scale factor: %f\n"
" Subpixel hinting: %s\n"
" Transform: %s\n"
- " Workspace: %s\n",
+ " Workspace: %s\n"
+ " Max render time: ",
json_object_get_string(name),
json_object_get_string(make),
json_object_get_string(model),
@@ -230,6 +232,8 @@ static void pretty_print_output(json_object *o) {
json_object_get_string(transform),
json_object_get_string(ws)
);
+ int max_render_time_int = json_object_get_int(max_render_time);
+ printf(max_render_time_int == 0 ? "off\n" : "%d ms\n", max_render_time_int);
} else {
printf(
"Output %s '%s %s %s' (inactive)\n",