summaryrefslogtreecommitdiffhomepage
path: root/patch/vanitygaps.c
diff options
context:
space:
mode:
authorbakkeby <[email protected]>2021-05-19 17:41:25 +0200
committerbakkeby <[email protected]>2021-05-19 17:41:25 +0200
commit9a0fb6c83b4b830f84f3c1294bd89a3023b69c70 (patch)
treedda65be37699fe39516f9ab1c1de388304d1de99 /patch/vanitygaps.c
parente1f28aae25865fd109f3e20f31b101afd5a80952 (diff)
downloaddwm-flexipatch-9a0fb6c83b4b830f84f3c1294bd89a3023b69c70.tar.gz
dwm-flexipatch-9a0fb6c83b4b830f84f3c1294bd89a3023b69c70.zip
vanitygaps: PERTAG_VANITYGAPS_PATCH to control both gaps and whether gaps are enabled per tag ref. #147
Diffstat (limited to 'patch/vanitygaps.c')
-rw-r--r--patch/vanitygaps.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/patch/vanitygaps.c b/patch/vanitygaps.c
index 105ea72..f18a7c3 100644
--- a/patch/vanitygaps.c
+++ b/patch/vanitygaps.c
@@ -1,7 +1,7 @@
/* Settings */
-#if !PERTAG_VANITYGAPS_PATCH || !PERTAG_PATCH
+#if !PERTAG_VANITYGAPS_PATCH
static int enablegaps = 1;
-#endif // PERTAG_VANITYGAPS_PATCH | PERTAG_PATCH
+#endif // PERTAG_VANITYGAPS_PATCH
static void
setgaps(int oh, int ov, int ih, int iv)
@@ -19,7 +19,7 @@ setgaps(int oh, int ov, int ih, int iv)
#if PERTAG_VANITYGAPS_PATCH && PERTAG_PATCH
selmon->pertag->gaps[selmon->pertag->curtag] =
((oh & 0xFF) << 0) | ((ov & 0xFF) << 8) | ((ih & 0xFF) << 16) | ((iv & 0xFF) << 24);
- #endif // PERTAG_VANITYGAPS_PATCH | PERTAG_PATCH
+ #endif // PERTAG_VANITYGAPS_PATCH
arrange(selmon);
}
@@ -72,7 +72,7 @@ setgapsex(const Arg *arg)
#else
if (!enablegaps)
enablegaps = 1;
- #endif // PERTAG_VANITYGAPS_PATCH | PERTAG_PATCH
+ #endif // PERTAG_VANITYGAPS_PATCH
setgaps(oh, ov, ih, iv);
}
@@ -85,7 +85,7 @@ togglegaps(const Arg *arg)
selmon->pertag->enablegaps[selmon->pertag->curtag] = !selmon->pertag->enablegaps[selmon->pertag->curtag];
#else
enablegaps = !enablegaps;
- #endif // PERTAG_VANITYGAPS_PATCH | PERTAG_PATCH
+ #endif // PERTAG_VANITYGAPS_PATCH
arrange(NULL);
}
@@ -177,11 +177,11 @@ static void
getgaps(Monitor *m, int *oh, int *ov, int *ih, int *iv, unsigned int *nc)
{
unsigned int n, oe, ie;
- #if PERTAG_PATCH
+ #if PERTAG_VANITYGAPS_PATCH && PERTAG_PATCH
oe = ie = selmon->pertag->enablegaps[selmon->pertag->curtag];
#else
oe = ie = enablegaps;
- #endif // PERTAG_PATCH
+ #endif // PERTAG_VANITYGAPS_PATCH
Client *c;
for (n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++);