fixes
This commit is contained in:
parent
ea723385ca
commit
01ffd92227
1 changed files with 13 additions and 12 deletions
25
config.def.h
25
config.def.h
|
@ -3,7 +3,7 @@
|
|||
|
||||
/* appearance */
|
||||
static const unsigned int borderpx = 2; /* border pixel of windows */
|
||||
static const Gap default_gap = {.isgap = 1, .realgap = 20, .gappx = 20};
|
||||
static const Gap default_gap = {.isgap = 1, .realgap = 5, .gappx = 5};
|
||||
static const unsigned int snap = 5; /* snap pixel */
|
||||
static const int swallowfloating = 0; /* 1 means swallow floating windows by default */
|
||||
static const int showbar = 1; /* 0 means no bar */
|
||||
|
@ -19,14 +19,14 @@ static const char col_cyan[] = "#005577";
|
|||
static const char col_white[] = "#ffffff";
|
||||
static const char col_black[] = "#000000";
|
||||
static const char col_light[] = "#ebdbb2";
|
||||
static const char col_dark[] = "#121212";
|
||||
static const char col_main_light[] = "#d3869b";
|
||||
static const char col_main_dark[] = "#00111b";
|
||||
static const char col_main_contr[] = "#69434d";
|
||||
static const char col_dark[] = "#1d2021";
|
||||
static const char col_main_light[] = "#fabd2f";
|
||||
static const char col_main_dark[] = "#1d2021";
|
||||
static const char col_main_contr[] = "#012b27";
|
||||
static const char *colors[][3] = {
|
||||
/* --------------- */
|
||||
/* fg bg border */
|
||||
[SchemeNorm] = { col_main_light, col_main_dark, col_main_contr },
|
||||
[SchemeNorm] = { col_light, col_main_contr, col_main_dark },
|
||||
[SchemeSel] = { col_dark, col_main_light, col_main_light },
|
||||
};
|
||||
|
||||
|
@ -38,9 +38,10 @@ static const Rule rules[] = {
|
|||
* WM_CLASS(STRING) = instance, class
|
||||
* WM_NAME(STRING) = title
|
||||
*/
|
||||
/* class instance title tags mask isfloating isterminal noswallow monitor */
|
||||
{ "st", NULL, NULL, 0, 0, 1, 0, -1 },
|
||||
{ NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */
|
||||
/* class instance title tags mask isfloating isterminal noswallow monitor */
|
||||
{ "st", NULL, NULL, 0, 0, 1, 0, -1 },
|
||||
{ "Display-im6.q16", NULL, NULL, 0, 1, 1, 0, -1 },
|
||||
{ NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */
|
||||
};
|
||||
|
||||
/* layout(s) */
|
||||
|
@ -74,13 +75,13 @@ static const char *termcmd[] = { "st", NULL };
|
|||
/* custom commands */
|
||||
static const char *filemanager[] = { "thunar", NULL };
|
||||
static const char *dbookmarks[] = { "menu-bookmarks", NULL };
|
||||
static const char *dpass[] = { "menu-pass", NULL };
|
||||
static const char *dpassotp[] = { "menu-otp", NULL };
|
||||
static const char *dpass[] = { "dwmpass", NULL };
|
||||
static const char *dpassotp[] = { "dwmotp", NULL };
|
||||
static const char *klayout[] = { "setxkbmap-next", NULL };
|
||||
static const char *doutput[] = { "menu-output", NULL };
|
||||
static const char *dinput[] = { "menu-input", NULL };
|
||||
static const char *dpower[] = { "menu-power", NULL };
|
||||
static const char *browser[] = { "surf", NULL };
|
||||
static const char *browser[] = { "firefox-hardened", NULL };
|
||||
static const char *wpa_gui[] = { "wpa_gui", NULL };
|
||||
static const char *brightdown[] = { "brightdown", NULL };
|
||||
static const char *brightup[] = { "brightup", NULL };
|
||||
|
|
Loading…
Reference in a new issue