aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/config.h b/config.h
index 38815b1..9fad82e 100644
--- a/config.h
+++ b/config.h
@@ -6,8 +6,8 @@ static const unsigned int gappx = 8; /* gaps between windows */
static const unsigned int snap = 32; /* snap pixel */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
-static const char *fonts[] = { "JetBrains Mono:style=medium:size=11" };
-static const char dmenufont[] = "JetBrains Mono:stlye=medium:size=11";
+static const char *fonts[] = { "JetBrains Mono NF:style=medium:size=11" };
+static const char dmenufont[] = "JetBrains Mono NF:stlye=medium:size=11";
// gruvbox
static const char fg[] = "#ebdbb2";
static const char bg_normal[] = "#3c3836";
@@ -56,6 +56,7 @@ static const Layout layouts[] = {
{ "[]=", tile }, /* first entry is default */
{ "><>", NULL }, /* no layout function means floating behavior */
{ "[M]", monocle },
+ { "|||", col },
};
/* key definitions */
@@ -109,6 +110,7 @@ static Key keys[] = {
{ MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
{ MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
+ { MODKEY, XK_c, setlayout, {.v = &layouts[3]} },
{ MODKEY, XK_space, setlayout, {0} },
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
{ MODKEY, XK_0, view, {.ui = ~0 } },