diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-08-16 23:49:08 +0300 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-08-16 23:49:08 +0300 |
commit | 1a9fcf5fdd6e9adccd46b0cec15ad57f77f5b6dd (patch) | |
tree | 7b2b5aac5be160dba18ebea7e209f0ae3e7d889f /config.def.h.orig | |
parent | 812aa788fa06c9a48fb7b5f54d08c99cbb4f709c (diff) |
Patching better gaps with fullgaps. Everything is stable in this commit.
Changes to be committed:
modified: config.def.h
modified: config.def.h.orig
modified: config.def.h.rej
modified: config.h
modified: drw.c
modified: drw.c.orig
deleted: dwm.1.orig
modified: dwm.c
modified: dwm.c.orig
modified: dwm.c.rej
renamed: patches_new/dwm-fullgaps-6.4.diff -> patches/dwm-fullgaps-6.4.diff
deleted: patches/dwm-uselessgap-20211119-58414bee958f2.diff
renamed: patches_new/dwm-tag-preview-6.3.diff -> patches_huge/dwm-tag-preview-6.3.diff
renamed: patches_new/dwm-winicon-6.3-v2.1.diff -> patches_huge/dwm-winicon-6.3-v2.1.diff
modified: patches_new/dwm-noborderflicker-20211227-8657affa2a61.diff
Diffstat (limited to 'config.def.h.orig')
-rw-r--r-- | config.def.h.orig | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/config.def.h.orig b/config.def.h.orig index 14bcdf7..3d8ca89 100644 --- a/config.def.h.orig +++ b/config.def.h.orig @@ -2,7 +2,7 @@ /* appearance */ static const unsigned int borderpx = 1; /* border pixel of windows */ -static const unsigned int gappx = 6; /* gaps between windows */ +static const unsigned int gappx = 5; /* 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 */ @@ -35,7 +35,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 = 0; /* 1 means respect size hints in tiled resizals */ +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 */ static const Layout layouts[] = { @@ -90,6 +90,13 @@ 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} }, + { MODKEY|ShiftMask, XK_Left, tagtoprev, {0} }, TAGKEYS( XK_1, 0) TAGKEYS( XK_2, 1) TAGKEYS( XK_3, 2) |