birdwm

birdwm - mrgrouse's daily driver fork of suckless' dwm. Contains many patches and is currently loosely maintained.
Log | Files | Refs | README | LICENSE

commit 73281f4a378368d00cccb46ef36934ee44d1f90a
parent 8e79f72e0af274edbf390609848cfd024dedaa8e
Author: mrgrouse <bdmfegys@duck.com>
Date:   Thu,  3 Jul 2025 06:00:49 -0400

config.def.h: fix indentation and update keybindings for scratchpads

Diffstat:
Mconfig.def.h | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -141,9 +141,10 @@ 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_y, togglescratch, {.ui = 0 } }, - { MODKEY, XK_u, togglescratch, {.ui = 1 } }, - { MODKEY, XK_x, togglescratch, {.ui = 2 } }, + { MODKEY, XK_y, togglescratch, {.ui = 0 } }, + { MODKEY, XK_n, togglescratch, {.ui = 1 } }, + { MODKEY|ShiftMask, XK_u, togglescratch, {.ui = 2 } }, + { MODKEY, XK_r, togglescratch, {.ui = 3 } }, TAGKEYS( XK_1, 0) TAGKEYS( XK_2, 1) TAGKEYS( XK_3, 2)