dwm

dynamic window manager

git clone https://9o.is/git/dwm.git

commit 2f2720447dcaee06fb64bd0239d1d3d7741009ea
parent e6e2cca529a2e51abb21ccbc410363a7c3df183a
Author: Jul <jul@9o.is>
Date:   Sun,  1 Feb 2026 03:06:22 -0500

change normal border to visible gray

Diffstat:
Mconfig.h | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/config.h b/config.h @@ -8,11 +8,12 @@ static const int topbar = 0; /* 0 means bottom bar */ static const char *fonts[] = { "Fira Mono:size=18" }; static const char dmenufont[] = "Fira Mono:size=18"; static const char col_black[] = "#131314"; +static const char col_surface[] = "#616162"; static const char col_white[] = "#e3e3e3"; static const char col_blue[] = "#89b4fa"; static const char *colors[][3] = { /* fg bg border */ - [SchemeNorm] = { col_white, col_black, col_black }, + [SchemeNorm] = { col_white, col_black, col_surface }, [SchemeSel] = { col_white, col_black, col_blue }, };