|
|
|
|
@ -1,21 +1,18 @@
|
|
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
|
|
|
|
|
|
/* appearance */
|
|
|
|
|
static const unsigned int borderpx = 0; /* border pixel of windows */
|
|
|
|
|
static const unsigned int borderpx = 1; /* 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 */
|
|
|
|
|
static const char *fonts[] = { "monospace:size=10" };
|
|
|
|
|
static const char dmenufont[] = "Inconsolata:size=10";
|
|
|
|
|
static const char col_gray1[] = "#222222";
|
|
|
|
|
static const char col_gray2[] = "#000000";
|
|
|
|
|
static const char col_gray3[] = "#FFFFFF";
|
|
|
|
|
static const char col_gray4[] = "#eeeeee";
|
|
|
|
|
static const char col_cyan[] = "#222222";
|
|
|
|
|
static const char *fonts[] = { "Cherry:size=10" };
|
|
|
|
|
static const char col_green[] = "#00FF00";
|
|
|
|
|
static const char col_lightgray[] = "#eeeeee";
|
|
|
|
|
static const char col_black[] = "#000000";
|
|
|
|
|
static const char *colors[][3] = {
|
|
|
|
|
/* fg bg border */
|
|
|
|
|
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
|
|
|
|
|
[SchemeSel] = { col_gray4, col_cyan, col_cyan },
|
|
|
|
|
[SchemeNorm] = { col_green, col_black, col_black },
|
|
|
|
|
[SchemeSel] = { col_lightgray, col_black, col_green },
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* tagging */
|
|
|
|
|
@ -26,9 +23,10 @@ static const Rule rules[] = {
|
|
|
|
|
* WM_CLASS(STRING) = instance, class
|
|
|
|
|
* WM_NAME(STRING) = title
|
|
|
|
|
*/
|
|
|
|
|
/* class instance title tags mask isfloating monitor */
|
|
|
|
|
{ "Gimp", NULL, NULL, 0, 1, -1 },
|
|
|
|
|
{ "Firefox", NULL, NULL, 1 << 8, 0, -1 },
|
|
|
|
|
/* class instance title tags mask isfloating monitor */
|
|
|
|
|
{ "Nextcloud", NULL, NULL, 1 << 8, 0, -1 },
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* layout(s) */
|
|
|
|
|
|