summarylogtreecommitdiffstats
path: root/config.h
diff options
context:
space:
mode:
authorJean-Francois Chevrette2020-03-28 18:25:48 -0400
committerJean-Francois Chevrette2020-03-28 18:25:48 -0400
commitc60117e83efbbb05b021436c9d9cf5dda72554bb (patch)
tree1e08b5dc353f469c40650d9089055da759878d84 /config.h
parent06f8b53f4b76b52bc8028067b8b6e5dcbfd118a7 (diff)
downloadaur-c60117e83efbbb05b021436c9d9cf5dda72554bb.tar.gz
add patches
Diffstat (limited to 'config.h')
-rw-r--r--config.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/config.h b/config.h
index 1c0b587bda10..2170f47a78e0 100644
--- a/config.h
+++ b/config.h
@@ -18,6 +18,9 @@ static const char *colors[][3] = {
[SchemeSel] = { col_gray4, col_cyan, col_cyan },
};
+/* gaps */
+static const unsigned int gappx = 6; /* gap pixel between windows */
+
/* tagging */
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
@@ -76,6 +79,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_r, rotatestack, {0} },
{ MODKEY, XK_space, setlayout, {0} },
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
{ MODKEY, XK_0, view, {.ui = ~0 } },