Only show border for active window

master
Hektor Misplon 2020-12-11 10:07:58 +01:00
parent 76488e6072
commit bc3f7c863a
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ static const char col_gray3[] = "#555555";
static const char col_gray4[] = "#cccccc"; static const char col_gray4[] = "#cccccc";
static const char *colors[][3] = { static const char *colors[][3] = {
/* fg bg border */ /* fg bg border */
[SchemeNorm] = { col_gray3, col_gray0, col_gray1 }, [SchemeNorm] = { col_gray3, col_gray0, col_gray0 },
[SchemeSel] = { col_gray4, col_gray0, col_gray2 }, [SchemeSel] = { col_gray4, col_gray0, col_gray2 },
}; };