diff options
author | Joe <bousset.rudy@gmail.com> | 2022-08-17 20:04:18 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-08-17 20:04:18 +0200 |
commit | 1bdef2640b6990a27ff12f9e87fa8ac1e34d1287 (patch) | |
tree | af6b57af048912b5f5ef74be842d337440b4f41a /config.def.h | |
parent | update (diff) | |
download | dwm-1bdef2640b6990a27ff12f9e87fa8ac1e34d1287.tar.gz dwm-1bdef2640b6990a27ff12f9e87fa8ac1e34d1287.tar.bz2 dwm-1bdef2640b6990a27ff12f9e87fa8ac1e34d1287.tar.xz dwm-1bdef2640b6990a27ff12f9e87fa8ac1e34d1287.tar.zst dwm-1bdef2640b6990a27ff12f9e87fa8ac1e34d1287.zip |
removed bartabgroups
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/config.def.h b/config.def.h index 80c4f02..f85fe93 100644 --- a/config.def.h +++ b/config.def.h @@ -19,8 +19,6 @@ 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_gray1, col_gray2 }, - [SchemeTabInactive] = { col_gray2, col_gray1, col_gray2 } }; /* tagging */ @@ -63,15 +61,6 @@ 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 6 // # 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 */ |