sway

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

commit 604be656256e0bed22f3d7ab3a19951bb5157152
parent 8f19faf6e7b681640c0c247d11bf72bab9315633
Author: Taiyu <taiyu.len@gmail.com>
Date:   Mon, 10 Aug 2015 14:29:24 -0700

make cmd_workspace return 0 on success

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

diff --git a/sway/commands.c b/sway/commands.c @@ -275,7 +275,7 @@ int cmd_workspace(struct sway_config *config, int argc, char **argv) { } else sway_log(L_DEBUG, "workspace exists, all ok"); workspace_switch(workspace); - return 1; + return 0; } /* Keep alphabetized */