From b008ae3ebc0d2b8a2de6059fef13029b5b28af59 Mon Sep 17 00:00:00 2001 From: NlGHT Date: Fri, 26 Mar 2021 10:14:21 +0100 Subject: [PATCH] Set max monitors to 8 --- dwm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dwm.c b/dwm.c index d498dd5..e0769ec 100644 --- a/dwm.c +++ b/dwm.c @@ -271,8 +271,8 @@ static Drw *drw; static Monitor *mons, *selmon; static Window root, wmcheckwin; -static int lastchosentag[32]; -static int previouschosentag[32]; +static int lastchosentag[8]; +static int previouschosentag[8]; /* configuration, allows nested code to access above variables */ #include "config.h"