diff options
| author | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2021-12-25 22:01:01 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2021-12-25 22:01:01 -0500 |
| commit | 1d0e2b6e9bdf9d52e17b59561d1ad14073f2a43f (patch) | |
| tree | 528983845293be2d3350e08437030541e6961250 | |
| parent | 3885024fc2391cbfe97eebc310e76e876523cba3 (diff) | |
| download | dwm-1d0e2b6e9bdf9d52e17b59561d1ad14073f2a43f.tar.gz | |
Removed doubled keybindings
Some of the scratchpad keybindings were duplicated, which resulted
in the toggle functionality being broken. Removing the duplicates
fixes the issue.
| -rw-r--r-- | config.def.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h index 86a0ee7..b72b418 100644 --- a/config.def.h +++ b/config.def.h @@ -230,8 +230,6 @@ static Key keys[] = { { MODKEY, XK_period, focusmon, {.i = +1 } }, { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, - { MODKEY, XK_y, togglescratch, {.ui = 0 } }, - { MODKEY, XK_u, togglescratch, {.ui = 1 } }, TAGKEYS( XK_1, 0) TAGKEYS( XK_2, 1) TAGKEYS( XK_3, 2) |