From 1ed78ab44303b5123a8c6acb6b624da84d0268f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Wed, 30 Oct 2019 20:25:31 +0100 Subject: [PATCH] wayland: temporary: track last terminal's exit value --- wayland.h | 1 + 1 file changed, 1 insertion(+) diff --git a/wayland.h b/wayland.h index 9ac094f8..d0a8332f 100644 --- a/wayland.h +++ b/wayland.h @@ -148,6 +148,7 @@ struct wayland { tll(struct terminal *) terms; struct terminal *focused; struct terminal *moused; + int last_exit_value; /* TODO: exit value from client(s)? */ }; struct wayland *wayl_init(struct fdm *fdm);