diff options
| author | P.P.A <adolphs@moselle.moe> | 2023-07-08 09:42:51 +0200 |
|---|---|---|
| committer | P.P.A <adolphs@moselle.moe> | 2023-07-08 09:42:51 +0200 |
| commit | 3eea951a662f9282de6b6847c861c358f5dc5f9f (patch) | |
| tree | 1b3402335a205c299800d7e10976235227d0b098 /config.def.h.orig | |
| parent | 88a51560ef67174f46cd0b02f41b4da43465bf9a (diff) | |
scratchpad
Diffstat (limited to 'config.def.h.orig')
| -rw-r--r-- | config.def.h.orig | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/config.def.h.orig b/config.def.h.orig index 074d7e0..1f750b5 100644 --- a/config.def.h.orig +++ b/config.def.h.orig @@ -2,6 +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 snap = 32; /* snap pixel */ static const int swallowfloating = 0; /* 1 means swallow floating windows by default */ static const unsigned int systraypinning = 0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */ @@ -43,7 +44,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[] = { @@ -95,6 +96,11 @@ static const Key keys[] = { { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, { MODKEY, XK_F5, xrdb, {.v = NULL } }, + { MODKEY, XK_minus, setgaps, {.i = -1 } }, + { MODKEY, XK_equal, setgaps, {.i = +1 } }, + { MODKEY|ShiftMask, XK_equal, setgaps, {.i = 0 } }, + { MODKEY|ShiftMask, XK_j, pushdown, {0} }, + { MODKEY|ShiftMask, XK_k, pushup, {0} }, TAGKEYS( XK_1, 0) TAGKEYS( XK_2, 1) TAGKEYS( XK_3, 2) |
