aboutsummaryrefslogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
authorJoe <rbo@gmx.us>2025-04-22 16:42:19 +0200
committerJoe <rbo@gmx.us>2025-04-22 16:42:19 +0200
commit58a39f924cc8eaf32f0e24c0f5fcdfd24522a6e6 (patch)
tree9eb9c74795b8313c3cfac90b6f09170be9e071fc /config.def.h
parentnogapx (diff)
downloaddwm-58a39f924cc8eaf32f0e24c0f5fcdfd24522a6e6.tar.gz
dwm-58a39f924cc8eaf32f0e24c0f5fcdfd24522a6e6.tar.bz2
dwm-58a39f924cc8eaf32f0e24c0f5fcdfd24522a6e6.tar.xz
dwm-58a39f924cc8eaf32f0e24c0f5fcdfd24522a6e6.tar.zst
dwm-58a39f924cc8eaf32f0e24c0f5fcdfd24522a6e6.zip
up
Diffstat (limited to '')
-rw-r--r--config.def.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index ce9e3f5..275e005 100644
--- a/config.def.h
+++ b/config.def.h
@@ -252,6 +252,9 @@ static const Key keys[] = {
{ MODKEY|ControlMask, XK_x, incnmaster, {.i = -1 } },
{ MODKEY|ControlMask, XK_minus, setmfact, {.f = -0.025} },
{ MODKEY|ControlMask, XK_equal, setmfact, {.f = +0.025} },
+ { MODKEY|ControlMask|ShiftMask, XK_minus, setcfact, {.f = +0.25} },
+ { MODKEY|ControlMask|ShiftMask, XK_equal, setcfact, {.f = -0.25} },
+ { MODKEY|ControlMask|ShiftMask, XK_0, setcfact, {.f = 0.00} },
{ MODKEY|ShiftMask, XK_j, movestack, {.i = +1 } },
{ MODKEY|ShiftMask, XK_k, movestack, {.i = -1 } },
{ MODKEY|ShiftMask, XK_Return, zoom, {0} },