aewl

view config.arg.h @ 532:651f2c868b31

code polishing, removed unnecessary newlines
author Anselm R. Garbe <arg@10kloc.org>
date Fri, 06 Oct 2006 11:50:15 +0200
parents 451f19d48845
children d5aa5a4be560
line source
1 /* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
2 * See LICENSE file for license details.
3 */
5 #define TAGS \
6 const char *tags[] = { "dev", "work", "net", "fnord", NULL };
8 #define DEFMODE dotile /* dofloat */
9 #define FLOATSYMBOL "><>"
10 #define TILESYMBOL "[]="
12 #define FONT "-*-terminus-medium-*-*-*-12-*-*-*-*-*-iso10646-*"
13 #define NORMBGCOLOR "#333333"
14 #define NORMFGCOLOR "#dddddd"
15 #define SELBGCOLOR "#333366"
16 #define SELFGCOLOR "#eeeeee"
17 #define STATUSBGCOLOR "#222222"
18 #define STATUSFGCOLOR "#9999cc"
20 #define MASTER 600 /* per thousand */
21 #define MODKEY Mod1Mask
23 #define KEYS \
24 static Key key[] = { \
25 /* modifier key function arguments */ \
26 { MODKEY|ShiftMask, XK_Return, spawn, \
27 { .cmd = "exec uxterm -bg '#111111' -fg '#eeeeee' -cr '#eeeeee' +sb -fn '"FONT"'" } }, \
28 { MODKEY, XK_p, spawn, \
29 { .cmd = "exe=\"$(IFS=:; for dir in $PATH; do " \
30 "for file in \"$dir\"/*; do [ -x \"$file\" ] && echo \"${file##*/}\"; done; done " \
31 "| sort -u | 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, resizecol, { .i = 15 } }, \
37 { MODKEY, XK_s, resizecol, { .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 };
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 };