diff options
| author | Malfurious <m@lfurio.us> | 2022-01-27 02:06:43 -0500 |
|---|---|---|
| committer | Matt Hunter <m@lfurio.us> | 2026-01-17 23:09:29 -0500 |
| commit | 4924e78296e792fec83e6f4dfb309e992304721b (patch) | |
| tree | 2baaf8c59496840d6a4786b4c23f21eb6e922faa | |
| parent | a9aa0d8ffbb548b0b1f9f755557aef2482c0f820 (diff) | |
| download | dwm-4924e78296e792fec83e6f4dfb309e992304721b.tar.gz dwm-4924e78296e792fec83e6f4dfb309e992304721b.zip | |
config: Remove unwanted default bindings
| -rw-r--r-- | config.def.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/config.def.h b/config.def.h index 81c3fc0..5522c60 100644 --- a/config.def.h +++ b/config.def.h @@ -78,8 +78,6 @@ static const Key keys[] = { { MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, { MODKEY, XK_f, setlayout, {.v = &layouts[1]} }, { MODKEY, XK_m, setlayout, {.v = &layouts[2]} }, - { MODKEY, XK_space, setlayout, {0} }, - { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, { MODKEY, XK_0, view, {.ui = ~0 } }, { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } }, { MODKEY, XK_comma, focusmon, {.i = -1 } }, @@ -102,16 +100,10 @@ static const Key keys[] = { /* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */ static const Button buttons[] = { /* click event mask button function argument */ - { ClkLtSymbol, 0, Button1, setlayout, {0} }, - { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} }, - { ClkWinTitle, 0, Button2, zoom, {0} }, - { ClkStatusText, 0, Button2, spawn, {.v = termcmd } }, { ClkClientWin, MODKEY, Button1, movemouse, {0} }, { ClkClientWin, MODKEY, Button2, togglefloating, {0} }, { ClkClientWin, MODKEY, Button3, resizemouse, {0} }, { ClkTagBar, 0, Button1, view, {0} }, { ClkTagBar, 0, Button3, toggleview, {0} }, - { ClkTagBar, MODKEY, Button1, tag, {0} }, - { ClkTagBar, MODKEY, Button3, toggletag, {0} }, }; |
