aboutsummaryrefslogtreecommitdiff
path: root/.repos/dwm/config.h
diff options
context:
space:
mode:
authorMarvin Borner2020-04-14 16:06:38 +0200
committerMarvin Borner2020-04-14 16:06:38 +0200
commit5fdba75bfabd45cb1bf38af86d3cec641d488093 (patch)
tree37732d88ad7a6a04987a8842fc9d58106db0a7a0 /.repos/dwm/config.h
parent5a1e1cb5fc7481d02fec611bfadd2d2928448c59 (diff)
Added surf configurations
Diffstat (limited to '.repos/dwm/config.h')
-rw-r--r--.repos/dwm/config.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/.repos/dwm/config.h b/.repos/dwm/config.h
index 9ecb4fc..4d39a23 100644
--- a/.repos/dwm/config.h
+++ b/.repos/dwm/config.h
@@ -1,6 +1,4 @@
/* See LICENSE file for copyright and license details. */
-#include "horizgrid.c"
-#include "tcl.c"
/* appearance */
static const unsigned int borderpx = 1; /* border pixel of windows */
@@ -46,11 +44,9 @@ static const int resizehints = 1; /* 1 means respect size hints in tiled resi
static const Layout layouts[] = {
/* symbol arrange function */
- { "[G]", horizgrid },
{ "[T]", tile }, /* first entry is default */
{ "[F]", NULL }, /* no layout function means floating behavior */
{ "[M]", monocle },
- { "[3]", tcl },
};
/* key definitions */
@@ -93,11 +89,9 @@ static Key keys[] = {
{ MODKEY, XK_Return, zoom, {0} },
{ MODKEY, XK_Tab, view, {0} },
{ MODKEY, XK_q, killclient, {0} },
- { MODKEY, XK_g, setlayout, {.v = &layouts[0]} },
- { MODKEY, XK_t, setlayout, {.v = &layouts[1]} },
- { MODKEY, XK_f, setlayout, {.v = &layouts[2]} },
- { MODKEY, XK_m, setlayout, {.v = &layouts[3]} },
- { MODKEY, XK_c, setlayout, {.v = &layouts[4]} },
+ { 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 } },