From 3097611bdbf3f3f86c3bae15c3f6815ef3532f79 Mon Sep 17 00:00:00 2001 From: speedie Date: Sun, 2 Jul 2023 02:40:06 +0200 Subject: [PATCH] fix border color for unfocused clients --- dwm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dwm.c b/dwm.c index d74e0b8..033ed3e 100644 --- a/dwm.c +++ b/dwm.c @@ -1804,7 +1804,7 @@ unfocus(Client *c, int setfocus) unsigned short g; unsigned short b; - hexconv(col_cyan, &r, &g, &b); + hexconv(col_gray2, &r, &g, &b); col.red = r << 8; col.green = g << 8;