|
@@ -4,17 +4,17 @@ |
|
|
static const char *fonts[] = { |
|
|
static const char *fonts[] = { |
|
|
"SauceCodePro NF:size=10" |
|
|
"SauceCodePro NF:size=10" |
|
|
}; |
|
|
}; |
|
|
static const char dmenufont[] = "monospace:size=10"; |
|
|
|
|
|
|
|
|
static const char dmenufont[] = "SauceCodePro NF:size=10"; |
|
|
static const char normbordercolor[] = "#444444"; |
|
|
static const char normbordercolor[] = "#444444"; |
|
|
static const char normbgcolor[] = "#222222"; |
|
|
static const char normbgcolor[] = "#222222"; |
|
|
static const char normfgcolor[] = "#bbbbbb"; |
|
|
static const char normfgcolor[] = "#bbbbbb"; |
|
|
static const char selbordercolor[] = "#005577"; |
|
|
|
|
|
|
|
|
static const char selbordercolor[] = "#333544"; |
|
|
static const char selbgcolor[] = "#005577"; |
|
|
static const char selbgcolor[] = "#005577"; |
|
|
static const char selfgcolor[] = "#eeeeee"; |
|
|
static const char selfgcolor[] = "#eeeeee"; |
|
|
static const unsigned int borderpx = 1; /* border pixel of windows */ |
|
|
|
|
|
|
|
|
static const unsigned int borderpx = 5; /* border pixel of windows */ |
|
|
static const Gap default_gap = {.isgap = 1, .realgap = 10, .gappx = 10}; |
|
|
static const Gap default_gap = {.isgap = 1, .realgap = 10, .gappx = 10}; |
|
|
static const unsigned int snap = 32; /* snap pixel */ |
|
|
static const unsigned int snap = 32; /* snap pixel */ |
|
|
static const int showbar = 1; /* 0 means no bar */ |
|
|
|
|
|
|
|
|
static const int showbar = 0; /* 0 means no bar */ |
|
|
static const int topbar = 1; /* 0 means bottom bar */ |
|
|
static const int topbar = 1; /* 0 means bottom bar */ |
|
|
|
|
|
|
|
|
/* tagging */ |
|
|
/* tagging */ |
|
@@ -59,7 +59,7 @@ static const Layout layouts[] = { |
|
|
/* commands */ |
|
|
/* commands */ |
|
|
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ |
|
|
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ |
|
|
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL }; |
|
|
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL }; |
|
|
static const char *termcmd[] = { "x-terminal-emulator", NULL }; |
|
|
|
|
|
|
|
|
static const char *termcmd[] = { "st", NULL }; |
|
|
|
|
|
|
|
|
static Key keys[] = { |
|
|
static Key keys[] = { |
|
|
/* modifier key function argument */ |
|
|
/* modifier key function argument */ |
|
@@ -91,9 +91,9 @@ static Key keys[] = { |
|
|
{ MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, |
|
|
{ MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, |
|
|
{ MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, |
|
|
{ MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, |
|
|
{ MODKEY|ShiftMask, XK_s, show, {0} }, |
|
|
{ MODKEY|ShiftMask, XK_s, show, {0} }, |
|
|
{ MODKEY|ShiftMask, XK_h, hide, {0} }, |
|
|
|
|
|
{ MODKEY|ShiftMask, XK_b, toggleAttachBelow, {0} }, |
|
|
|
|
|
{ MODKEY, XK_minus, setgaps, {.i = -5 } }, |
|
|
|
|
|
|
|
|
{ MODKEY|ShiftMask, XK_h, hide, {0} }, |
|
|
|
|
|
{ MODKEY|ShiftMask, XK_b, toggleAttachBelow, {0} }, |
|
|
|
|
|
{ MODKEY, XK_minus, setgaps, {.i = -5 } }, |
|
|
{ MODKEY, XK_equal, setgaps, {.i = +5 } }, |
|
|
{ MODKEY, XK_equal, setgaps, {.i = +5 } }, |
|
|
{ MODKEY|ShiftMask, XK_minus, setgaps, {.i = GAP_RESET } }, |
|
|
{ MODKEY|ShiftMask, XK_minus, setgaps, {.i = GAP_RESET } }, |
|
|
{ MODKEY|ShiftMask, XK_equal, setgaps, {.i = GAP_TOGGLE} }, |
|
|
{ MODKEY|ShiftMask, XK_equal, setgaps, {.i = GAP_TOGGLE} }, |
|
|