birdwm

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit c10ec2f87835261162227595e66f014548158dd7
parent 7bc93d29d62f1ccd954efeb8adcd858f608d8502
Author: grouse <bdmfegys@duck.com>
Date:   Sun, 24 Dec 2023 02:18:17 -0500

fix indenting on keybindings section in config.def.h

Diffstat:
Mconfig.def.h | 16++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -123,10 +123,10 @@ static const Key keys[] = { { MODKEY, XK_w, spawn, {.v = wallpaper } }, { MODKEY, XK_g, spawn, {.v = wallpapergif } }, { MODKEY|ShiftMask, XK_j, spawn, {.v = restarter } }, - { MODKEY, XK_f, spawn, {.v = firefox } }, - { 0, XF86XK_AudioRaiseVolume, spawn, {.v = volup} }, - { 0, XF86XK_AudioLowerVolume, spawn, {.v = voldown} }, - { 0, XF86XK_AudioMute, spawn, {.v = volmute} }, + { MODKEY, XK_f, spawn, {.v = firefox } }, + { 0, XF86XK_AudioRaiseVolume, spawn, {.v = volup} }, + { 0, XF86XK_AudioLowerVolume, spawn, {.v = voldown} }, + { 0, XF86XK_AudioMute, spawn, {.v = volmute} }, { MODKEY, XK_b, togglebar, {0} }, { MODKEY, XK_j, focusstack, {.i = +1 } }, { MODKEY, XK_k, focusstack, {.i = -1 } }, @@ -147,10 +147,10 @@ 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_F5, xrdb, {.v = NULL } }, - { MODKEY, XK_y, togglescratch, {.ui = 0 } }, - { MODKEY, XK_u, togglescratch, {.ui = 1 } }, - { MODKEY|ShiftMask, XK_u, togglescratch, {.ui = 2 } }, + { MODKEY, XK_F5, xrdb, {.v = NULL } }, + { MODKEY, XK_y, togglescratch, {.ui = 0 } }, + { MODKEY, XK_u, togglescratch, {.ui = 1 } }, + { MODKEY|ShiftMask, XK_u, togglescratch, {.ui = 2 } }, TAGKEYS( XK_1, 0) TAGKEYS( XK_2, 1) TAGKEYS( XK_3, 2)