aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorBryson Steck <brysonsteck@protonmail.com>2022-11-12 17:54:15 -0700
committerBryson Steck <brysonsteck@protonmail.com>2022-11-12 17:54:15 -0700
commit4da4ae80e489b477ec9913317a209f9ad8f9256a (patch)
treed23bd6224f4fe9f24f3ba504432f7e5600a1ae02 /config.h
parent89ea6276f5a62cd53d4f145633b0f8a3a74a26b6 (diff)
downloaddwm-4da4ae80e489b477ec9913317a209f9ad8f9256a.tar
dwm-4da4ae80e489b477ec9913317a209f9ad8f9256a.tar.gz
dwm-4da4ae80e489b477ec9913317a209f9ad8f9256a.tar.bz2
removed unwanted patches
Diffstat (limited to 'config.h')
-rw-r--r--config.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/config.h b/config.h
index 352af79..cb43db5 100644
--- a/config.h
+++ b/config.h
@@ -6,6 +6,7 @@ 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 int swallowfloating = 0;
static const char *fonts[] = { "JetBrains Mono NF:style=medium:size=11" };
static const char dmenufont[] = "JetBrains Mono NF:stlye=medium:size=11";
// gruvbox
@@ -27,7 +28,7 @@ static const char *colors[][3] = {
};
/* tagging */
-static const char *tags[] = { "!", "@", "#", "$", "%", "^", "*", "(" };
+static const char *tags[] = { "!", "@", "#", "$", "%", "^", "&", "*", "(" };
static const Rule rules[] = {
/* xprop(1):
@@ -56,7 +57,6 @@ static const Layout layouts[] = {
{ "[]=", tile }, /* first entry is default */
{ "><>", NULL }, /* no layout function means floating behavior */
{ "[M]", monocle },
- { "|||", col },
};
/* key definitions */
@@ -111,7 +111,6 @@ 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 } },