From e26a351865a0d969b3f40ca3c14be7ff8d7533ad Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 6 Dec 2010 22:51:02 +0000 Subject: Add an option to alert (monitor) for silence (lack of activity) in a window. From Thomas Adam. --- status.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'status.c') diff --git a/status.c b/status.c index b1d93c97..65a0afeb 100644 --- a/status.c +++ b/status.c @@ -395,6 +395,8 @@ status_replace1(struct client *c,struct winlink *wl, tmp[0] = '!'; else if (wl->flags & WINLINK_ACTIVITY) tmp[0] = '#'; + else if (wl->flags & WINLINK_SILENCE) + tmp[0] = '~'; else if (wl == s->curw) tmp[0] = '*'; else if (wl == TAILQ_FIRST(&s->lastw)) -- cgit v1.2.3