diff --git a/config.h b/config.h index 3904f10..9f4defd 100644 --- a/config.h +++ b/config.h @@ -12,13 +12,14 @@ static const char col_gray2[] = "#444444"; static const char col_gray3[] = "#bbbbbb"; static const char col_gray4[] = "#eeeeee"; static const char col_cyan[] = "#005577"; -static const char col_border_default[] = "#000000"; -static const char col_border_focused[] = "#232323"; +static const char col_border_default[] = "#000000"; +static const char col_border_focused[] = "#232323"; +static const char col_window_bg_focused[] = "#232323"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_border_default }, - [SchemeSel] = { col_gray4, "#232323", col_border_focused }, + [SchemeSel] = { col_gray4, col_window_bg_focused, col_border_focused }, }; // Start-up scripts & commands diff --git a/dwm b/dwm index 7818562..216429d 100755 Binary files a/dwm and b/dwm differ