Compare commits

...

2 Commits

@ -1,7 +1,7 @@
/* See LICENSE file for copyright and license details. */ /* See LICENSE file for copyright and license details. */
/* appearance */ /* appearance */
static const unsigned int borderpx = 1; /* border pixel of windows */ static const unsigned int borderpx = 3; /* border pixel of windows */
static const unsigned int snap = 32; /* snap pixel */ static const unsigned int snap = 32; /* snap pixel */
static const unsigned int gappih = 15; /* horiz inner gap between windows */ static const unsigned int gappih = 15; /* horiz inner gap between windows */
static const unsigned int gappiv = 15; /* vert inner gap between windows */ static const unsigned int gappiv = 15; /* vert inner gap between windows */
@ -34,9 +34,9 @@ static const unsigned int baralpha = 175;
static const unsigned int borderalpha = OPAQUE; static const unsigned int borderalpha = OPAQUE;
static const char *colors[][3] = { static const char *colors[][3] = {
/* fg bg border */ /* fg bg border */
[SchemeNorm] = {col_gray3, col_gray1, "#000000"}, [SchemeNorm] = {col_gray3, col_gray1, col_gray1},
[SchemeSel] = {col_gray3, col_cyan, col_cyan}, [SchemeSel] = {col_gray3, col_cyan, col_cyan},
[SchemeStatus] = {col_gray3, col_gray1, "#000000"}, [SchemeStatus] = {col_gray3, col_gray1, col_gray1},
[SchemeTagsSel] = {col_gray3, col_gray1, col_gray1}, [SchemeTagsSel] = {col_gray3, col_gray1, col_gray1},
// Tagbar left unselected {text,background,not used but cannot be empty} // Tagbar left unselected {text,background,not used but cannot be empty}
[SchemeTagsNorm] = {col_gray4, col_gray1, col_gray1}, [SchemeTagsNorm] = {col_gray4, col_gray1, col_gray1},
@ -50,7 +50,7 @@ static const char *colors[][3] = {
static const unsigned int alphas[][3] = { static const unsigned int alphas[][3] = {
/* fg bg border */ /* fg bg border */
[SchemeNorm] = {OPAQUE, baralpha, borderalpha}, [SchemeNorm] = {OPAQUE, baralpha, 0},
[SchemeSel] = {OPAQUE, baralpha, borderalpha}, [SchemeSel] = {OPAQUE, baralpha, borderalpha},
[SchemeStatus] = {OPAQUE, baralpha, borderalpha}, [SchemeStatus] = {OPAQUE, baralpha, borderalpha},
[SchemeTagsSel] = {OPAQUE, baralpha, borderalpha}, [SchemeTagsSel] = {OPAQUE, baralpha, borderalpha},
@ -93,6 +93,8 @@ static const Rule rules[] = {
//{ "" , NULL , NULL , 0 , 1 , 0 , 1 , -1 } , //{ "" , NULL , NULL , 0 , 1 , 0 , 1 , -1 } ,
{"St", NULL, NULL, 0, 0, 1, 0, -1}, {"St", NULL, NULL, 0, 0, 1, 0, -1},
{"Firefox", NULL, NULL, 1 << 5, 0, 0, 0, -1}, {"Firefox", NULL, NULL, 1 << 5, 0, 0, 0, -1},
{"Navigator", NULL, NULL, 1 << 5, 0, 0, 0, -1},
{"zen", NULL, NULL, 1 << 5, 0, 0, 0, -1},
{"dragon", NULL, NULL, 0, 1, 0, 1, -1}, {"dragon", NULL, NULL, 0, 1, 0, 1, -1},
{"Dragon", NULL, NULL, 0, 1, 0, 1, -1}, {"Dragon", NULL, NULL, 0, 1, 0, 1, -1},
{"zbar", NULL, NULL, 0, 1, 0, 1, -1}, {"zbar", NULL, NULL, 0, 1, 0, 1, -1},

Loading…
Cancel
Save