This commit is contained in:
tavo-wasd 2024-03-13 11:22:18 -06:00
parent ea723385ca
commit 01ffd92227

View file

@ -3,7 +3,7 @@
/* appearance */ /* appearance */
static const unsigned int borderpx = 2; /* border pixel of windows */ 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 unsigned int snap = 5; /* snap pixel */
static const int swallowfloating = 0; /* 1 means swallow floating windows by default */ static const int swallowfloating = 0; /* 1 means swallow floating windows by default */
static const int showbar = 1; /* 0 means no bar */ 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_white[] = "#ffffff";
static const char col_black[] = "#000000"; static const char col_black[] = "#000000";
static const char col_light[] = "#ebdbb2"; static const char col_light[] = "#ebdbb2";
static const char col_dark[] = "#121212"; static const char col_dark[] = "#1d2021";
static const char col_main_light[] = "#d3869b"; static const char col_main_light[] = "#fabd2f";
static const char col_main_dark[] = "#00111b"; static const char col_main_dark[] = "#1d2021";
static const char col_main_contr[] = "#69434d"; static const char col_main_contr[] = "#012b27";
static const char *colors[][3] = { static const char *colors[][3] = {
/* --------------- */ /* --------------- */
/* fg bg border */ /* 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 }, [SchemeSel] = { col_dark, col_main_light, col_main_light },
}; };
@ -40,6 +40,7 @@ static const Rule rules[] = {
*/ */
/* class instance title tags mask isfloating isterminal noswallow monitor */ /* class instance title tags mask isfloating isterminal noswallow monitor */
{ "st", NULL, NULL, 0, 0, 1, 0, -1 }, { "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 */ { NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */
}; };
@ -74,13 +75,13 @@ static const char *termcmd[] = { "st", NULL };
/* custom commands */ /* custom commands */
static const char *filemanager[] = { "thunar", NULL }; static const char *filemanager[] = { "thunar", NULL };
static const char *dbookmarks[] = { "menu-bookmarks", NULL }; static const char *dbookmarks[] = { "menu-bookmarks", NULL };
static const char *dpass[] = { "menu-pass", NULL }; static const char *dpass[] = { "dwmpass", NULL };
static const char *dpassotp[] = { "menu-otp", NULL }; static const char *dpassotp[] = { "dwmotp", NULL };
static const char *klayout[] = { "setxkbmap-next", NULL }; static const char *klayout[] = { "setxkbmap-next", NULL };
static const char *doutput[] = { "menu-output", NULL }; static const char *doutput[] = { "menu-output", NULL };
static const char *dinput[] = { "menu-input", NULL }; static const char *dinput[] = { "menu-input", NULL };
static const char *dpower[] = { "menu-power", 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 *wpa_gui[] = { "wpa_gui", NULL };
static const char *brightdown[] = { "brightdown", NULL }; static const char *brightdown[] = { "brightdown", NULL };
static const char *brightup[] = { "brightup", NULL }; static const char *brightup[] = { "brightup", NULL };