commit f8ec8239f363258384098a06943ea35081b7b952
parent 2da2ca501905925eb6c5028990075d782249a94a
Author: Miles Alan <m@milesalan.com>
Date: Sat, 16 May 2020 08:58:07 -0500
Fix tagging - 2 rows for bartabggroups; use Mod3Mask for toggletag
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/config.def.h b/config.def.h
@@ -45,7 +45,7 @@ static const int resizehints = 0; /* 1 means respect size hints in tiled resi
#define BARTAB_BOTTOMBORDER 1 // 0 = off, 1 = on
#define BARTAB_TAGSINDICATOR 1 // 0 = off, 1 = on if >1 client/view tag, 2 = always on
#define BARTAB_TAGSPX 5 // # pixels for tag grid boxes
-#define BARTAB_TAGSROWS 3 // # rows in tag grid (9 tags, e.g. 3x3)
+#define BARTAB_TAGSROWS 2 // # rows in tag grid (9 tags, e.g. 3x3)
static void (*bartabmonfns[])(Monitor *) = { monocle /* , customlayoutfn */ };
static void (*bartabfloatfns[])(Monitor *) = { NULL /* , customlayoutfn */ };
@@ -74,7 +74,8 @@ static const Layout layouts[] = {
{0, MODKEY, KEY, view, {.ui = 1 << TAG} }, \
{0, MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
{0, MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
- {0, MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
+ {0, MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} }, \
+ {0, Mod4Mask, KEY, toggletag, {.ui = 1 << TAG} },
/* helper for spawning shell commands in the pre dwm-5.0 fashion */
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }