JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fix monocle mode
[dwm.git] / config.def.h
1 /* See LICENSE file for copyright and license details. */
2
3 /* appearance */
4 static const char font[]            = "-*-terminus-medium-r-*-*-16-*-*-*-*-*-*-*";
5 static const char normbordercolor[] = "#444444";
6 static const char normbgcolor[]     = "#222222";
7 static const char normfgcolor[]     = "#bbbbbb";
8 static const char selbordercolor[]  = "#005577";
9 static const char selbgcolor[]      = "#005577";
10 static const char selfgcolor[]      = "#eeeeee";
11 static const unsigned int borderpx  = 1;        /* border pixel of windows */
12 static const unsigned int snap      = 32;       /* snap pixel */
13 static const Bool showbar           = True;     /* False means no bar */
14 static const Bool topbar            = True;     /* False means bottom bar */
15
16 /* tagging */
17 static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
18 static const char *workspace_numbers_str[] = { "0", "1", "2", "3", "4", "5", "6", "7", "8" };
19
20 static const Rule rules[] = {
21         /* xprop(1):
22          *      WM_CLASS(STRING) = instance, class
23          *      WM_NAME(STRING) = title
24          */
25         /* class      instance    title       tags mask     isfloating   monitor */
26         { "Gimp",     NULL,       NULL,       0,            True,        -1 },
27         { "Firefox",  NULL,       NULL,       1 << 8,       False,       -1 },
28 };
29
30 /* layout(s) */
31 static const float mfact      = 0.55; /* factor of master area size [0.05..0.95] */
32 static const int nmaster      = 1;    /* number of clients in master area */
33 static const Bool resizehints = True; /* True means respect size hints in tiled resizals */
34
35 static const Layout layouts[] = {
36         /* symbol     arrange function */
37         { "[]=",      tile },    /* first entry is default */
38         { "><>",      NULL },    /* no layout function means floating behavior */
39         { "[M]",      monocle },
40 };
41
42 /* key definitions */
43 #define MODKEY Mod1Mask
44 #define TAGKEYS(KEY,TAG) \
45         { MODKEY,                       KEY,      view,           {.ui = 1 << TAG} }, \
46         { MODKEY|ControlMask,           KEY,      toggleview,     {.ui = 1 << TAG} }, \
47         { MODKEY|ShiftMask,             KEY,      tag,            {.ui = 1 << TAG} }, \
48         { MODKEY|ControlMask|ShiftMask, KEY,      toggletag,      {.ui = 1 << TAG} },
49
50 /* helper for spawning shell commands in the pre dwm-5.0 fashion */
51 #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
52
53 /* commands */
54 static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
55 static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
56 char WORKSPACE_NUMBER[] = "WORKSPACE_NUMBER=00";
57 static const char *termcmd[]  = { "env", (const char *)(&(WORKSPACE_NUMBER[0])), "lilyterm", NULL };
58
59 static Key keys[] = {
60         /* modifier                     key        function        argument */
61         { MODKEY,                       XK_p,      spawn,          {.v = dmenucmd } },
62         { MODKEY|ShiftMask,             XK_Return, spawn,          {.v = termcmd } },
63         { MODKEY,                       XK_b,      togglebar,      {0} },
64         { MODKEY,                       XK_j,      focusstack,     {.i = +1 } },
65         { MODKEY,                       XK_k,      focusstack,     {.i = -1 } },
66         { MODKEY,                       XK_i,      incnmaster,     {.i = +1 } },
67         { MODKEY,                       XK_d,      incnmaster,     {.i = -1 } },
68         { MODKEY,                       XK_h,      setmfact,       {.f = -0.05} },
69         { MODKEY,                       XK_l,      setmfact,       {.f = +0.05} },
70         { MODKEY,                       XK_Return, zoom,           {0} },
71         { MODKEY,                       XK_Tab,    view,           {0} },
72         { MODKEY|ShiftMask,             XK_c,      killclient,     {0} },
73         { MODKEY,                       XK_t,      setlayout,      {.v = &layouts[0]} },
74         { MODKEY,                       XK_f,      setlayout,      {.v = &layouts[1]} },
75         { MODKEY,                       XK_m,      setlayout,      {.v = &layouts[2]} },
76         { MODKEY,                       XK_space,  setlayout,      {0} },
77         { MODKEY|ShiftMask,             XK_space,  togglefloating, {0} },
78         { MODKEY,                       XK_0,      view,           {.ui = ~0 } },
79         { MODKEY|ShiftMask,             XK_0,      tag,            {.ui = ~0 } },
80         { MODKEY,                       XK_comma,  focusmon,       {.i = -1 } },
81         { MODKEY,                       XK_period, focusmon,       {.i = +1 } },
82         { MODKEY|ShiftMask,             XK_comma,  tagmon,         {.i = -1 } },
83         { MODKEY|ShiftMask,             XK_period, tagmon,         {.i = +1 } },
84         TAGKEYS(                        XK_1,                      0)
85         TAGKEYS(                        XK_2,                      1)
86         TAGKEYS(                        XK_3,                      2)
87         TAGKEYS(                        XK_4,                      3)
88         TAGKEYS(                        XK_5,                      4)
89         TAGKEYS(                        XK_6,                      5)
90         TAGKEYS(                        XK_7,                      6)
91         TAGKEYS(                        XK_8,                      7)
92         TAGKEYS(                        XK_9,                      8)
93         { MODKEY|ShiftMask,             XK_q,      quit,           {0} },
94 };
95
96 /* button definitions */
97 /* click can be ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
98 static Button buttons[] = {
99         /* click                event mask      button          function        argument */
100         { ClkLtSymbol,          0,              Button1,        setlayout,      {0} },
101         { ClkLtSymbol,          0,              Button3,        setlayout,      {.v = &layouts[2]} },
102         { ClkWinTitle,          0,              Button2,        zoom,           {0} },
103         { ClkStatusText,        0,              Button2,        spawn,          {.v = termcmd } },
104         { ClkClientWin,         MODKEY,         Button1,        movemouse,      {0} },
105         { ClkClientWin,         MODKEY,         Button2,        togglefloating, {0} },
106         { ClkClientWin,         MODKEY,         Button3,        resizemouse,    {0} },
107         { ClkTagBar,            0,              Button1,        view,           {0} },
108         { ClkTagBar,            0,              Button3,        toggleview,     {0} },
109         { ClkTagBar,            MODKEY,         Button1,        tag,            {0} },
110         { ClkTagBar,            MODKEY,         Button3,        toggletag,      {0} },
111 };
112