JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
applying aluminium style for arg's config.h
[dwm.git] / config.arg.h
1 /* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
2  * See LICENSE file for license details.
3  */
4
5 #define TAGS \
6 const char *tags[] = { "dev", "work", "net", "fnord", NULL };
7
8 #define DEFMODE                 dotile          /* dofloat */
9 #define FLOATSYMBOL             "><>"
10 #define TILESYMBOL              "[]="
11
12 #define FONT                    "-*-terminus-medium-*-*-*-14-*-*-*-*-*-*-*"
13 #define NORMBGCOLOR             "#555753"
14 #define NORMFGCOLOR             "#ffffff"
15 #define SELBGCOLOR              "#888a85"
16 #define SELFGCOLOR              "#ffffff"
17 #define STATUSBGCOLOR           "#2e3436"
18 #define STATUSFGCOLOR           "#ffffff"
19
20 #define MASTER                  600 /* per thousand */
21 #define MODKEY                  Mod1Mask
22 #define SNAP                    40 /* pixel */
23
24 #define KEYS \
25 static Key key[] = { \
26         /* modifier                     key             function        arguments */ \
27         { MODKEY|ShiftMask,             XK_Return,      spawn, \
28                 { .cmd = "exec urxvtc -tr -bg black -fg '#eeeeee' -cr '#eeeeee' +sb -fn '"FONT"'" } }, \
29         { MODKEY,                       XK_p,           spawn, \
30                 { .cmd = "exe=\"$(lsx `echo $PATH | sed 's/:/ /g'` | sort -u " \
31                         " | dmenu -font '"FONT"' -normbg '"NORMBGCOLOR"' -normfg '"NORMFGCOLOR"' " \
32                         "-selbg '"SELBGCOLOR"' -selfg '"SELFGCOLOR"')\" && exec $exe" } }, \
33         { MODKEY,                       XK_j,           focusnext,      { 0 } }, \
34         { MODKEY,                       XK_k,           focusprev,      { 0 } }, \
35         { MODKEY,                       XK_Return,      zoom,           { 0 } }, \
36         { MODKEY,                       XK_g,           resizemaster,   { .i = 15 } }, \
37         { MODKEY,                       XK_s,           resizemaster,   { .i = -15 } }, \
38         { MODKEY|ShiftMask,             XK_1,           tag,            { .i = 0 } }, \
39         { MODKEY|ShiftMask,             XK_2,           tag,            { .i = 1 } }, \
40         { MODKEY|ShiftMask,             XK_3,           tag,            { .i = 2 } }, \
41         { MODKEY|ShiftMask,             XK_4,           tag,            { .i = 3 } }, \
42         { MODKEY|ControlMask|ShiftMask, XK_1,           toggletag,      { .i = 0 } }, \
43         { MODKEY|ControlMask|ShiftMask, XK_2,           toggletag,      { .i = 1 } }, \
44         { MODKEY|ControlMask|ShiftMask, XK_3,           toggletag,      { .i = 2 } }, \
45         { MODKEY|ControlMask|ShiftMask, XK_4,           toggletag,      { .i = 3 } }, \
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|ControlMask,           XK_1,           toggleview,     { .i = 0 } }, \
54         { MODKEY|ControlMask,           XK_2,           toggleview,     { .i = 1 } }, \
55         { MODKEY|ControlMask,           XK_3,           toggleview,     { .i = 2 } }, \
56         { MODKEY|ControlMask,           XK_4,           toggleview,     { .i = 3 } }, \
57         { MODKEY|ShiftMask,             XK_q,           quit,           { 0 } }, \
58 };
59
60 #define RULES \
61 static Rule rule[] = { \
62         /* class:instance:title regex   tags regex      isfloat */ \
63         { "Firefox.*",                  "net",          False }, \
64         { "Gimp.*",                     NULL,           True }, \
65         { "MPlayer.*",                  NULL,           True }, \
66         { "Acroread.*",                 NULL,           True }, \
67 };