|
|
|
@ -2,30 +2,38 @@ |
|
|
|
|
|
|
|
|
|
/* appearance */ |
|
|
|
|
static const unsigned int borderpx = 1; /* border pixel of windows */ |
|
|
|
|
static const unsigned int snap = 32; /* snap pixel */ |
|
|
|
|
static const unsigned int snap = 0; /* snap pixel (32)*/ |
|
|
|
|
static const unsigned int gappx = 20; |
|
|
|
|
static const int showbar = 1; /* 0 means no bar */ |
|
|
|
|
static const int topbar = 1; /* 0 means bottom bar */ |
|
|
|
|
static const char *fonts[] = { "monospace:size=12" }; |
|
|
|
|
static const char *fonts[] = { "Ubuntu Mono:size=12" }; |
|
|
|
|
static const char dmenufont[] = "monospace:size=10"; |
|
|
|
|
|
|
|
|
|
static const char bg_color[] = "#35383b"; |
|
|
|
|
static const char bg_color_bar[] = "#151515"; |
|
|
|
|
static const char inactive_bg_color[] = "#272727"; |
|
|
|
|
static const char text_color[] = "#f3f4f5"; |
|
|
|
|
static const char inactive_text_color[] = "#676E7D"; |
|
|
|
|
static const char urgent_bg_color[] = "#E53935"; |
|
|
|
|
static const char indicator_color[] = "#474747"; |
|
|
|
|
|
|
|
|
|
static const char col_gray1[] = "#222222"; |
|
|
|
|
static const char col_gray2[] = "#444444"; |
|
|
|
|
static const char col_gray3[] = "#bbbbbb"; |
|
|
|
|
static const char col_gray4[] = "#eeeeee"; |
|
|
|
|
static const char col_cyan[] = "#005577"; |
|
|
|
|
/* static const char *colors[][3] = { */ |
|
|
|
|
/* /\* fg bg border *\/ */ |
|
|
|
|
/* [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, */ |
|
|
|
|
/* [SchemeSel] = { col_gray4, col_cyan, col_cyan }, */ |
|
|
|
|
/* }; */ |
|
|
|
|
|
|
|
|
|
static const char *colors[][3] = { |
|
|
|
|
/* fg bg border */ |
|
|
|
|
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, |
|
|
|
|
[SchemeSel] = { col_gray4, col_cyan, col_cyan }, |
|
|
|
|
[SchemeNorm] = { text_color, bg_color_bar, bg_color }, |
|
|
|
|
[SchemeSel] = { text_color, col_cyan, col_cyan }, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
static const char bg_color[] = "#35383b"; |
|
|
|
|
static const char bg_color_bar[] = "#151515"; |
|
|
|
|
static const char inactive_bg_color[] = "#272727"; |
|
|
|
|
static const char text_color[] = "#f3f4f5"; |
|
|
|
|
static const char inactive_text_color[] = "#676E7D"; |
|
|
|
|
static const char urgent_bg_color[] = "#E53935"; |
|
|
|
|
static const char indicator_color[] = "#474747"; |
|
|
|
|
|
|
|
|
|
/* tagging */ |
|
|
|
|
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; |
|
|
|
|