aboutsummaryrefslogtreecommitdiff
path: root/dwm.c
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2024-06-03 22:20:13 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2024-06-03 22:20:13 +0100
commitdb5605a181570de82084f8a3511a8ffa700cb24c (patch)
treecbb0e198d74a45425aa3bb42ba2c032cb9c81785 /dwm.c
parentab70e0c0f8919ed1831ed6871d5b484910e8aeb6 (diff)
downloaddwm-db5605a181570de82084f8a3511a8ffa700cb24c.tar.gz
dwm-db5605a181570de82084f8a3511a8ffa700cb24c.tar.bz2
dwm-db5605a181570de82084f8a3511a8ffa700cb24c.zip
gappx -> default_gaps, opengap -> optional_gaps
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dwm.c b/dwm.c
index 01a8a97..0705c4a 100644
--- a/dwm.c
+++ b/dwm.c
@@ -294,7 +294,7 @@ struct Pertag {
unsigned int sellts[TAG_SIZE + 1]; /* selected layouts */
const Layout *ltidxs[TAG_SIZE + 1][2]; /* matrix of tags and layouts indexes */
int showbars[TAG_SIZE + 1]; /* display bar for the current tag */
- int gaps[TAG_SIZE + 1]; /* size of gaps for the current tag*/
+ int gaps[TAG_SIZE + 1]; /* current size of gaps */
};
#include "config.h"
@@ -733,7 +733,7 @@ createmon(void)
m->pertag->sellts[i] = m->sellt;
m->pertag->showbars[i] = m->showbar;
- m->pertag->gaps[i] = gappx;
+ m->pertag->gaps[i] = default_gaps;
}
return m;