aboutsummaryrefslogtreecommitdiff
path: root/swaymsg
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2023-02-02 09:34:03 +0100
committerSimon Zeni <simon@bl4ckb0ne.ca>2023-02-02 12:00:06 -0500
commitf22d4dbab721f36ba991055d87ab015d564604bb (patch)
treebcfff63188dcc2b8616d038b91d4bb909755eaf4 /swaymsg
parent412b80983ed4256da5d9bb1cbc033d18800ec2d4 (diff)
swaymsg: print output power status
Diffstat (limited to 'swaymsg')
-rw-r--r--swaymsg/main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/swaymsg/main.c b/swaymsg/main.c
index c0b5809e..4f6fa7b1 100644
--- a/swaymsg/main.c
+++ b/swaymsg/main.c
@@ -185,11 +185,12 @@ 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, *non_desktop;
+ json_object *name, *rect, *focused, *active, *power, *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, "power", &power);
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,
@@ -226,6 +227,7 @@ static void pretty_print_output(json_object *o) {
printf(
"Output %s '%s %s %s'%s\n"
" Current mode: %dx%d @ %.3f Hz\n"
+ " Power: %s\n"
" Position: %d,%d\n"
" Scale factor: %f\n"
" Scale filter: %s\n"
@@ -240,6 +242,7 @@ static void pretty_print_output(json_object *o) {
json_object_get_int(width),
json_object_get_int(height),
(double)json_object_get_int(refresh) / 1000,
+ json_object_get_boolean(power) ? "on" : "off",
json_object_get_int(x), json_object_get_int(y),
json_object_get_double(scale),
json_object_get_string(scale_filter),