morefixes
This commit is contained in:
parent
5dbb394ede
commit
5d3798a518
1 changed files with 4 additions and 3 deletions
|
@ -7,7 +7,7 @@ static const Gap default_gap = {.isgap = 1, .realgap = 10, .gappx = 10};
|
|||
static const unsigned int snap = 5; /* snap pixel */
|
||||
static const int swallowfloating = 0; /* 1 means swallow floating windows by default */
|
||||
static const int showbar = 1; /* 0 means no bar */
|
||||
static const int topbar = 0; /* 0 means bottom bar */
|
||||
static const int topbar = 1; /* 0 means bottom bar */
|
||||
static const char *fonts[] = { "JetBrainsMono:semibold:size=10" };
|
||||
static const char dmenufont[] = "JetBrainsMono:semibold:size=10";
|
||||
static const char col_gray1[] = "#222222";
|
||||
|
@ -19,11 +19,12 @@ static const char col_cyan[] = "#005577";
|
|||
static const char col_fg[] = "#ebdbb2";
|
||||
static const char col_main[] = "#224244";
|
||||
static const char col_second[] = "#458588";
|
||||
static const char col_asecond[] = "#376a6c";
|
||||
static const char *colors[][3] = {
|
||||
/* --------------- */
|
||||
/* fg bg border */
|
||||
[SchemeNorm] = { col_main, col_second,col_second },
|
||||
[SchemeSel] = { col_fg, col_main, col_main },
|
||||
[SchemeNorm] = { col_main, col_second, col_main },
|
||||
[SchemeSel] = { col_fg, col_asecond,col_fg },
|
||||
};
|
||||
|
||||
/* tagging */
|
||||
|
|
Loading…
Reference in a new issue