Added new layout with three columns, wide master in the middle.
[dwm] / config.h
CommitLineData
1adeaf60
AT
1/* See LICENSE file for copyright and license details. */
2
3/* appearance */
853da249 4static const unsigned int borderpx = 4; /* border pixel of windows */
1adeaf60
AT
5static const unsigned int snap = 32; /* snap pixel */
6static const int showbar = 1; /* 0 means no bar */
7static const int topbar = 1; /* 0 means bottom bar */
ba835934 8static const int startontag = 1; /* 0 means no tag active on start */
1b6712a5 9static const char *fonts[] = { "monospace:size=12" };
a5832938
AT
10// TODO: Make this central definition of the dmenufont apply everywhere. For
11// example, at the moment it does not apply to the dmenu invocations found in
12// quitprompt() and nametag().
1b6712a5 13static const char dmenufont[] = "monospace:size=12";
1adeaf60
AT
14static const char col_gray1[] = "#222222";
15static const char col_gray2[] = "#444444";
16static const char col_gray3[] = "#bbbbbb";
17static const char col_gray4[] = "#eeeeee";
18static const char col_cyan[] = "#005577";
853da249 19static const char col_red[] = "#ff0000";
1adeaf60
AT
20static const char *colors[][3] = {
21 /* fg bg border */
22 [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
853da249 23 [SchemeSel] = { col_gray4, col_cyan, col_red },
1adeaf60
AT
24};
25
26/* tagging */
c56e7560
AT
27#define MAX_TAGLEN 16
28static char tags[][MAX_TAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
1adeaf60
AT
29
30static const Rule rules[] = {
31 /* xprop(1):
32 * WM_CLASS(STRING) = instance, class
33 * WM_NAME(STRING) = title
34 */
35 /* class instance title tags mask isfloating monitor */
d9c1cfe3 36 { "sample", NULL, NULL, 0, 1, -1 },
1adeaf60
AT
37};
38
39/* layout(s) */
40static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
41static const int nmaster = 1; /* number of clients in master area */
42static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */
43static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */
44
03330c08 45#include "tcl.c"
1adeaf60
AT
46static const Layout layouts[] = {
47 /* symbol arrange function */
48 { "[]=", tile }, /* first entry is default */
49 { "><>", NULL }, /* no layout function means floating behavior */
50 { "[M]", monocle },
03330c08 51 { "|||", tcl },
1adeaf60
AT
52};
53
54/* key definitions */
55#define MODKEY Mod1Mask
56#define TAGKEYS(KEY,TAG) \
57 { MODKEY, KEY, view, {.ui = 1 << TAG} }, \
58 { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
59 { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
60 { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
61
62/* helper for spawning shell commands in the pre dwm-5.0 fashion */
63#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
64
65/* commands */
66static const char *dmenucmd[] = { "dmenu_run", "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
d9c1cfe3
AT
67static const char *termcmd[] = { "xterm", NULL };
68static const char *lockcmd[] = { "xscreensaver-command", "-lock", NULL };
69static const char *screenshotcmd[] = { "screenshot", NULL };
9813966c 70static const char *layoutmenu_cmd = "layoutmenu.sh";
1adeaf60
AT
71
72static const Key keys[] = {
73 /* modifier key function argument */
74 { MODKEY, XK_p, spawn, {.v = dmenucmd } },
75 { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
76 { MODKEY, XK_b, togglebar, {0} },
77 { MODKEY, XK_j, focusstack, {.i = +1 } },
78 { MODKEY, XK_k, focusstack, {.i = -1 } },
79 { MODKEY, XK_i, incnmaster, {.i = +1 } },
80 { MODKEY, XK_d, incnmaster, {.i = -1 } },
81 { MODKEY, XK_h, setmfact, {.f = -0.05} },
82 { MODKEY, XK_l, setmfact, {.f = +0.05} },
83 { MODKEY, XK_Return, zoom, {0} },
a9768a23 84 { MODKEY, XK_Tab, comboview, {0} },
1adeaf60
AT
85 { MODKEY|ShiftMask, XK_c, killclient, {0} },
86 { MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
87 { MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
88 { MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
89 { MODKEY, XK_space, setlayout, {0} },
90 { MODKEY|ShiftMask, XK_space, togglefloating, {0} },
a9768a23
AT
91 { MODKEY, XK_0, comboview, {.ui = ~0 } },
92 { MODKEY|ShiftMask, XK_0, combotag, {.ui = ~0 } },
1adeaf60
AT
93 { MODKEY, XK_comma, focusmon, {.i = -1 } },
94 { MODKEY, XK_period, focusmon, {.i = +1 } },
95 { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
96 { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
c56e7560 97 { MODKEY, XK_n, nametag, {0} },
1adeaf60
AT
98 TAGKEYS( XK_1, 0)
99 TAGKEYS( XK_2, 1)
100 TAGKEYS( XK_3, 2)
101 TAGKEYS( XK_4, 3)
102 TAGKEYS( XK_5, 4)
103 TAGKEYS( XK_6, 5)
104 TAGKEYS( XK_7, 6)
105 TAGKEYS( XK_8, 7)
106 TAGKEYS( XK_9, 8)
d9c1cfe3
AT
107 { MODKEY|ShiftMask, XK_q, quitprompt, {0} },
108 { MODKEY, XK_Escape, spawn, {.v = lockcmd } },
109 { MODKEY|ShiftMask, XK_Escape, spawn, {.v = screenshotcmd } },
1adeaf60
AT
110};
111
112/* button definitions */
113/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
114static const Button buttons[] = {
115 /* click event mask button function argument */
116 { ClkLtSymbol, 0, Button1, setlayout, {0} },
9813966c 117 { ClkLtSymbol, 0, Button3, layoutmenu, {0} },
1adeaf60
AT
118 { ClkWinTitle, 0, Button2, zoom, {0} },
119 { ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
120 { ClkClientWin, MODKEY, Button1, movemouse, {0} },
121 { ClkClientWin, MODKEY, Button2, togglefloating, {0} },
122 { ClkClientWin, MODKEY, Button3, resizemouse, {0} },
a9768a23 123 { ClkTagBar, 0, Button1, comboview, {0} },
1adeaf60 124 { ClkTagBar, 0, Button3, toggleview, {0} },
a9768a23 125 { ClkTagBar, MODKEY, Button1, combotag, {0} },
1adeaf60
AT
126 { ClkTagBar, MODKEY, Button3, toggletag, {0} },
127};
128