sway

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

commit b90af3357030264a1a0def38f3feecb9056f3740
parent 1c2a356dcf43f2fbd633a2e2badabbfd4b9e6cb3
Author: Drew DeVault <sir@cmpwn.com>
Date:   Mon, 29 Oct 2018 19:08:41 +0100

Merge pull request #3020 from emersion/swaymsg-return-status

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);