This commit is contained in:
tavo-wasd 2023-08-01 11:36:57 -06:00
parent e306a478f9
commit e0477412d7

View file

@ -3,32 +3,35 @@
/* appearance */
static const unsigned int borderpx = 2; /* border pixel of windows */
static const Gap default_gap = {.isgap = 1, .realgap = 10, .gappx = 10};
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 */
static const int topbar = 0; /* 0 means bottom bar */
static const char *fonts[] = { "JetBrainsMono:semibold:size=10" };
static const char dmenufont[] = "JetBrainsMono:semibold:size=10";
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "JetBrainsMono:bold:size=10" };
static const char dmenufont[] = "JetBrainsMono:bold:size=10";
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";
/* custom colors */
static const char col_fg[] = "#ebdbb2";
static const char col_main[] = "#458588";
static const char col_second[] = "#00111b";
static const char col_asecond[] = "#376a6c";
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[] = "#feb01a";
static const char col_main_dark[] = "#7d5e17";
static const char col_main_contr[] = "#c89725";
static const char *colors[][3] = {
/* --------------- */
/* fg bg border */
[SchemeNorm] = { col_main, col_second, col_second },
[SchemeSel] = { col_fg, col_asecond,col_fg },
[SchemeNorm] = { col_main_dark, col_main_light, col_dark },
[SchemeSel] = { col_light, col_main_dark, col_light },
};
/* tagging */
static const char *tags[] = { " 󰇄 dsk ", "  dev ", " 󰖟 www ", "  eml ", " 󰭹 cht " };
static const char *tags[] = { " I ", " II ", " III ", " IV ", " V " };
static const Rule rules[] = {
/* xprop(1):
@ -79,7 +82,7 @@ static const char *doutput[] = { "dmenu-output", NULL };
static const char *dinput[] = { "dmenu-input", NULL };
static const char *dpower[] = { "dmenu-power", NULL };
static const char *browser[] = { "tabbed-surf", NULL };
static const char *iwctlscan[] = { "iwctl-scan", NULL };
static const char *wpa_gui[] = { "wpa_gui", NULL };
static const char *brightdown[] = { "brightdown", NULL };
static const char *brightup[] = { "brightup", NULL };
static const char *clipmenu[] = { "clipmenu", NULL };
@ -132,7 +135,7 @@ static const Key keys[] = {
/* custom binds */
{ MODKEY, XK_f, spawn, {.v = filemanager } },
{ MODKEY, XK_b, spawn, {.v = dbookmarks } },
{ MODKEY|ShiftMask, XK_w, spawn, {.v = iwctlscan } },
{ MODKEY|ShiftMask, XK_w, spawn, {.v = wpa_gui } },
{ MODKEY|ShiftMask, XK_o, spawn, {.v = dpassotp } },
{ MODKEY|ShiftMask, XK_c, spawn, {.v = clipmenu } },
{ MODKEY, XK_w, spawn, {.v = browser } },