sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit eb675f0dfdb1fbfb54b608c706ace49685ca6f89
parent 1c2a356dcf43f2fbd633a2e2badabbfd4b9e6cb3
Author: emersion <contact@emersion.fr>
Date:   Mon, 29 Oct 2018 11:25:54 +0100

swaymsg: fix get_outputs status code

Diffstat:
Mswaymsg/main.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/swaymsg/main.c b/swaymsg/main.c @@ -23,7 +23,7 @@ static bool success_object(json_object *result) { json_object *success; if (!json_object_object_get_ex(result, "success", &success)) { - return false; + return true; } return json_object_get_boolean(success);