aboutsummaryrefslogtreecommitdiff
path: root/src/dwm/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dwm/config.h')
-rw-r--r--src/dwm/config.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/dwm/config.h b/src/dwm/config.h
index 05c4971..1e6b3e8 100644
--- a/src/dwm/config.h
+++ b/src/dwm/config.h
@@ -35,12 +35,10 @@ static const int refreshrate = 120; /* refresh rate (per second) for client mov
static const Layout lmonocle = { "[M]", monocle };
static const Layout ltile = { "[]=", tile };
-static const Layout lfloat = { "><>", NULL };
static const Layout layouts[] = {
lmonocle,
ltile,
- lfloat,
};
/* key definitions */
@@ -86,7 +84,6 @@ static const Key keys[] = {
{ MODKEY, XK_Tab, view, {0} },
{ MODKEY, XK_w, killclient, {0} },
{ MODKEY, XK_t, setlayout, {.v = &ltile} },
- { MODKEY, XK_f, setlayout, {.v = &lfloat} },
{ MODKEY, XK_m, setlayout, {.v = &lmonocle} },
{ MODKEY, XK_space, setlayout, {0} },
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
@@ -107,16 +104,8 @@ 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} },
};