JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
added symbols for different modes
[dwm.git] / config.default.h
1 /*
2  * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
3  * See LICENSE file for license details.
4  */
5
6 #define TAGS \
7 const char *tags[] = { "1", "2", "3", "4", "5", NULL };
8
9 #define DEFMODE                 dotile /* dofloat */
10 #define FLOATSYMBOL             "><>"
11 #define STACKPOS                StackRight      /* StackLeft */
12 #define BSTACKSYMBOL            "==="
13 #define VSTACKSYMBOL            "[]="
14
15 #define FONT                    "fixed"
16 #define NORMBGCOLOR             "#333366"
17 #define NORMFGCOLOR             "#cccccc"
18 #define SELBGCOLOR              "#666699"
19 #define SELFGCOLOR              "#eeeeee"
20 #define STATUSBGCOLOR           "#dddddd"
21 #define STATUSFGCOLOR           "#222222"
22
23 #define MASTER                  60 /* percent */
24 #define MODKEY                  Mod1Mask
25
26 #define KEYS \
27 static Key key[] = { \
28         /* modifier                     key             function        arguments */ \
29         { MODKEY|ShiftMask,             XK_Return,      spawn,          { .cmd = "exec xterm" } }, \
30         { MODKEY,                       XK_Tab,         focusnext,      { 0 } }, \
31         { MODKEY|ShiftMask,             XK_Tab,         focusprev,      { 0 } }, \
32         { MODKEY,                       XK_Return,      zoom,           { 0 } }, \
33         { MODKEY,                       XK_b,           togglestackpos, { 0 } }, \
34         { MODKEY,                       XK_g,           resizecol,      { .i = 20 } }, \
35         { MODKEY,                       XK_s,           resizecol,      { .i = -20 } }, \
36         { MODKEY|ShiftMask,             XK_1,           tag,            { .i = 0 } }, \
37         { MODKEY|ShiftMask,             XK_2,           tag,            { .i = 1 } }, \
38         { MODKEY|ShiftMask,             XK_3,           tag,            { .i = 2 } }, \
39         { MODKEY|ShiftMask,             XK_4,           tag,            { .i = 3 } }, \
40         { MODKEY|ShiftMask,             XK_5,           tag,            { .i = 4 } }, \
41         { MODKEY|ControlMask|ShiftMask, XK_1,           toggletag,      { .i = 0 } }, \
42         { MODKEY|ControlMask|ShiftMask, XK_2,           toggletag,      { .i = 1 } }, \
43         { MODKEY|ControlMask|ShiftMask, XK_3,           toggletag,      { .i = 2 } }, \
44         { MODKEY|ControlMask|ShiftMask, XK_4,           toggletag,      { .i = 3 } }, \
45         { MODKEY|ControlMask|ShiftMask, XK_5,           toggletag,      { .i = 4 } }, \
46         { MODKEY|ShiftMask,             XK_c,           killclient,     { 0 } }, \
47         { MODKEY,                       XK_space,       togglemode,     { 0 } }, \
48         { MODKEY,                       XK_0,           viewall,        { 0 } }, \
49         { MODKEY,                       XK_1,           view,           { .i = 0 } }, \
50         { MODKEY,                       XK_2,           view,           { .i = 1 } }, \
51         { MODKEY,                       XK_3,           view,           { .i = 2 } }, \
52         { MODKEY,                       XK_4,           view,           { .i = 3 } }, \
53         { MODKEY,                       XK_5,           view,           { .i = 4 } }, \
54         { MODKEY|ControlMask,           XK_1,           toggleview,     { .i = 0 } }, \
55         { MODKEY|ControlMask,           XK_2,           toggleview,     { .i = 1 } }, \
56         { MODKEY|ControlMask,           XK_3,           toggleview,     { .i = 2 } }, \
57         { MODKEY|ControlMask,           XK_4,           toggleview,     { .i = 3 } }, \
58         { MODKEY|ControlMask,           XK_5,           toggleview,     { .i = 4 } }, \
59         { MODKEY|ShiftMask,             XK_q,           quit,           { 0 } }, \
60 };
61
62 /* Query class:instance:title for regex matching info with following command:
63  * xprop | awk -F '"' '/^WM_CLASS/ { printf("%s:%s:",$4,$2) }; /^WM_NAME/ { printf("%s\n",$2) }' */
64 #define RULES \
65 static Rule rule[] = { \
66         /* class:instance:title regex   tags regex      isfloat */ \
67         { "Firefox.*",                  "2",            False }, \
68         { "Gimp.*",                     NULL,           True}, \
69 };