diff options
author | Malfurious <m@lfurio.us> | 2022-01-22 23:39:55 -0500 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2023-06-03 21:46:48 -0400 |
commit | 65f8be0443ada31a89e96fe23173eb87066630dc (patch) | |
tree | 8ba7a4819b46b70dc7a132ff90c6612019309538 | |
parent | bdc3fdf0085fc09268273f1b9cd2572c0c019dd2 (diff) | |
download | dwm-65f8be0443ada31a89e96fe23173eb87066630dc.tar.gz dwm-65f8be0443ada31a89e96fe23173eb87066630dc.zip |
config: Set mfact to 50%
-rw-r--r-- | config.def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 98a05c2..8b07f3c 100644 --- a/config.def.h +++ b/config.def.h @@ -31,7 +31,7 @@ static const Rule rules[] = { }; /* layout(s) */ -static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */ +static const float mfact = 0.50; /* factor of master area size [0.05..0.95] */ static const int nmaster = 1; /* number of clients in master area */ static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */ static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */ |