Compare commits

...

2 Commits

Author SHA1 Message Date
Przemysław Grondek
216c8b8e11 Colors change 2021-01-21 10:19:17 +01:00
Przemysław Grondek
f6e8d58514 Update some programs configuration 2021-01-21 10:16:30 +01:00

View File

@ -27,11 +27,11 @@ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */ static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "monospace:size=10" }; static const char *fonts[] = { "monospace:size=10" };
static const char dmenufont[] = "monospace:size=10"; static const char dmenufont[] = "monospace:size=10";
static const char col_gray1[] = "#222222"; static const char col_gray1[] = "#141414";
static const char col_gray2[] = "#444444"; static const char col_gray2[] = "#444444";
static const char col_gray3[] = "#bbbbbb"; static const char col_gray3[] = "#bbbbbb";
static const char col_gray4[] = "#eeeeee"; static const char col_gray4[] = "#eeeeee";
static const char col_cyan[] = "#005577"; static const char col_cyan[] = "#224488";
static const char *colors[][3] = { static const char *colors[][3] = {
/* fg bg border */ /* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
@ -52,6 +52,10 @@ static const Rule rules[] = {
{"st", NULL, NULL, 0, 0, 1, 1, -1}, {"st", NULL, NULL, 0, 0, 1, 1, -1},
{"Xephyr", NULL, NULL, 0, 1, 0, 0, -1}, {"Xephyr", NULL, NULL, 0, 1, 0, 0, -1},
{"Xnest", NULL, NULL, 0, 1, 0, 0, -1}, {"Xnest", NULL, NULL, 0, 1, 0, 0, -1},
{"streamdeck", NULL, NULL, 0, 0, 0, 1, -1},
{"jetbrains-toolbox", NULL, NULL, 0, 1, 0, 1, -1},
{"jetbrains-idea", NULL, NULL, 0, 0, 0, 1, -1},
{"jetbrains-idea", NULL, "Welcome to IntelliJ IDEA", 0, 1, 0, 1, -1},
}; };
/* layout(s) */ /* layout(s) */