Remove borders and make status dark gray

This commit is contained in:
Victor Timofei 2021-04-29 00:27:09 +03:00
parent 03d676658f
commit db03605cd1
Signed by: vtimofei
GPG Key ID: B790DCEBE281403A
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
#include <X11/XF86keysym.h>
/* appearance */
static const unsigned int borderpx = 5; /* border pixel of windows */
static const unsigned int borderpx = 0; /* border pixel of windows */
static const unsigned int snap = 32; /* snap pixel */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
@ -19,7 +19,7 @@ static const char col_pink_red[] = "#99000f";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
[SchemeSel] = { col_gray4, col_pink_red, col_pink_red },
[SchemeSel] = { col_gray4, col_gray1, col_gray2 },
};
/* Volume control using amixer */