diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-08-17 03:47:47 +0300 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-08-17 03:47:47 +0300 |
commit | 1ba93142d274f83b57e8c3f2bb474584f96e259f (patch) | |
tree | e804ef63d5e857c8efb82be597b8daa723323595 /config.def.h | |
parent | c1d412b128e30cf3d6406da1a328536a43cb3904 (diff) |
Useless-Gaps is just plain better.
Changes to be committed:
modified: config.def.h
modified: config.def.h.orig
modified: dwm.c
modified: dwm.c.orig
deleted: patches/dwm-fullgaps-6.4.diff
new file: patches/dwm-uselessgap-20211119-58414bee958f2.diff
deleted: patches_new/dwm-toggleborder-6.3.diff
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/config.def.h b/config.def.h index 6d4a67b..faa06ef 100644 --- a/config.def.h +++ b/config.def.h @@ -2,7 +2,7 @@ /* appearance */ static const unsigned int borderpx = 1; /* border pixel of windows */ -static const unsigned int gappx = 5; /* gaps between windows */ +static const unsigned int gappx = 6; /* gaps between windows */ static const unsigned int snap = 32; /* snap pixel */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ @@ -36,7 +36,7 @@ static const Rule rules[] = { /* layout(s) */ static const float mfact = 0.55; /* 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 resizehints = 0; /* 1 means respect size hints in tiled resizals */ static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */ static const Layout layouts[] = { @@ -91,9 +91,6 @@ static const Key keys[] = { { MODKEY, XK_period, focusmon, {.i = +1 } }, { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, - { MODKEY, XK_minus, setgaps, {.i = -1 } }, - { MODKEY, XK_equal, setgaps, {.i = +1 } }, - { MODKEY|ShiftMask, XK_equal, setgaps, {.i = 0 } }, { MODKEY, XK_Right, viewnext, {0} }, { MODKEY, XK_Left, viewprev, {0} }, { MODKEY|ShiftMask, XK_Right, tagtonext, {0} }, |