aboutsummaryrefslogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
authorJoe <bousset.rudy@gmail.com>2022-08-12 12:40:18 +0200
committerJoe <bousset.rudy@gmail.com>2022-08-12 12:40:18 +0200
commitbc0b589fcc3592ab1d7b420a4a47f5a10fa9464c (patch)
treebdff1d887754aa975cc0bcc98787d129234038c8 /config.def.h
parentgaps update (diff)
downloaddwm-bc0b589fcc3592ab1d7b420a4a47f5a10fa9464c.tar.gz
dwm-bc0b589fcc3592ab1d7b420a4a47f5a10fa9464c.tar.bz2
dwm-bc0b589fcc3592ab1d7b420a4a47f5a10fa9464c.tar.xz
dwm-bc0b589fcc3592ab1d7b420a4a47f5a10fa9464c.tar.zst
dwm-bc0b589fcc3592ab1d7b420a4a47f5a10fa9464c.zip
update
Diffstat (limited to '')
-rw-r--r--config.def.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index a6c11c3..f418015 100644
--- a/config.def.h
+++ b/config.def.h
@@ -18,6 +18,8 @@ static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
[SchemeSel] = { col_gray4, col_cyan, col_cyan },
+ [SchemeTabActive] = { col_gray2, col_gray3, col_gray2 },
+ [SchemeTabInactive] = { col_gray1, col_gray3, col_gray1 }
};
/* tagging */
@@ -44,6 +46,15 @@ static const int nmaster = 1; /* number of clients in master area */
static const int resizehints = 0; /* 1 means respect size hints in tiled resizals */
static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */
+/* Bartabgroups properties */
+#define BARTAB_BORDERS 1 // 0 = off, 1 = on
+#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)
+static void (*bartabmonfns[])(Monitor *) = { monocle /* , customlayoutfn */ };
+static void (*bartabfloatfns[])(Monitor *) = { NULL /* , customlayoutfn */ };
+
static const Layout layouts[] = {
/* symbol arrange function */
{ "[]=", tile }, /* first entry is default */