sway

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

commit c400ca8f88cc5e3f8a511e14d92a4491d9768d32
parent 8db417fafe367abab6a3deb1dc8fc28d8e447b1f
Author: Yacine Hmito <yacine.hmito@gmail.com>
Date:   Thu, 25 Feb 2016 23:13:27 +0100

Fix for when sway_abort doesn't exit

sway_terminate does an exit in case wlc_terminate doesn't

Diffstat:
Msway/main.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/sway/main.c b/sway/main.c @@ -25,6 +25,7 @@ static bool terminate_request = false; void sway_terminate(void) { terminate_request = true; wlc_terminate(); + exit(EXIT_FAILURE); } void sig_handler(int signal) {