aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2022-06-09 19:17:14 -0500
committerFurkan Sahin <furkan-dev@proton.me>2022-06-09 19:17:14 -0500
commit956e01dcd95a262c7f932bed34a4c8f99e975c71 (patch)
treebfcc9e01653f6d1938f5fb37122589d52aec45e3
parentcc940a6ab15c52f9f992859db46822981824ace4 (diff)
swaymsg: show non-desktop property when pretty printing outputs
-rw-r--r--swaymsg/main.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/swaymsg/main.c b/swaymsg/main.c
index c08406e2..c4e2b0bf 100644
--- a/swaymsg/main.c
+++ b/swaymsg/main.c
@@ -185,12 +185,13 @@ static void pretty_print_seat(json_object *i) {
}
static void pretty_print_output(json_object *o) {
- json_object *name, *rect, *focused, *active, *ws, *current_mode;
+ json_object *name, *rect, *focused, *active, *ws, *current_mode, *non_desktop;
json_object_object_get_ex(o, "name", &name);
json_object_object_get_ex(o, "rect", &rect);
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_object_get_ex(o, "non_desktop", &non_desktop);
json_object *make, *model, *serial, *scale, *scale_filter, *subpixel,
*transform, *max_render_time, *adaptive_sync_status;
json_object_object_get_ex(o, "make", &make);
@@ -213,7 +214,15 @@ static void pretty_print_output(json_object *o) {
json_object_object_get_ex(current_mode, "height", &height);
json_object_object_get_ex(current_mode, "refresh", &refresh);
- if (json_object_get_boolean(active)) {
+ if (json_object_get_boolean(non_desktop)) {
+ printf(
+ "Output %s '%s %s %s' (non-desktop)\n",
+ json_object_get_string(name),
+ json_object_get_string(make),
+ json_object_get_string(model),
+ json_object_get_string(serial)
+ );
+ } else if (json_object_get_boolean(active)) {
printf(
"Output %s '%s %s %s'%s\n"
" Current mode: %dx%d @ %.3f Hz\n"