updated on Wed Jan 25 04:02:27 UTC 2012
[aur-mirror.git] / dwm-krash-hg / config.h
blobaaa09bd6ef83ce1e4537592f3b2770b59221683a
1 /* See LICENSE file for copyright and license details. */
3 /* appearance */
4 static const char font[] = "-*-terminus-medium-r-normal-*-14-*-*-*-*-*-*-*";
5 static const char normbordercolor[] = "#dddddd";
6 static const char normbgcolor[] = "#eeeeee";
7 static const char normfgcolor[] = "#222222";
8 static const char selbordercolor[] = "#ff0000";
9 static const char selbgcolor[] = "#333333";
10 static const char selfgcolor[] = "#ffffff";
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 */
16 /* tagging */
17 static const char *tags[] = { "term", "term", "term", "root", "misc", "media", "mess", "rss", "net" };
19 static const Rule rules[] = {
20 /* class instance title tags mask isfloating monitor */
21 { "MPlayer", NULL, NULL, 0, True, -1 },
24 /* layout(s) */
25 static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
26 static const Bool resizehints = True; /* True means respect size hints in tiled resizals */
28 static const Layout layouts[] = {
29 /* symbol arrange function */
30 { "[]=", tile }, /* first entry is default */
31 { "><>", NULL }, /* no layout function means floating behavior */
32 { "[M]", monocle },
35 /* key definitions */
36 #define MODKEY Mod1Mask
37 #define TAGKEYS(KEY,TAG) \
38 { MODKEY, KEY, view, {.ui = 1 << TAG} }, \
39 { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
40 { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
41 { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
43 /* helper for spawning shell commands in the pre dwm-5.0 fashion */
44 #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
46 /* commands */
47 static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
48 static const char *termcmd[] = { "urxvtc", NULL };
50 static Key keys[] = {
51 /* modifier key function argument */
52 { MODKEY, XK_d, spawn, {.v = dmenucmd } },
53 { MODKEY, XK_x, spawn, {.v = termcmd } },
54 { MODKEY, XK_b, togglebar, {0} },
55 { MODKEY, XK_j, focusstack, {.i = +1 } },
56 { MODKEY, XK_k, focusstack, {.i = -1 } },
57 { MODKEY, XK_h, setmfact, {.f = -0.05} },
58 { MODKEY, XK_l, setmfact, {.f = +0.05} },
59 { MODKEY, XK_Return, zoom, {0} },
60 { MODKEY, XK_Tab, view, {0} },
61 { MODKEY, XK_q, killclient, {0} },
62 { MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
63 { MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
64 { MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
65 { MODKEY, XK_space, setlayout, {0} },
66 { MODKEY|ShiftMask, XK_space, togglefloating, {0} },
67 { MODKEY, XK_0, view, {.ui = ~0 } },
68 { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
69 { MODKEY, XK_comma, focusmon, {.i = -1 } },
70 { MODKEY, XK_period, focusmon, {.i = +1 } },
71 { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
72 { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
73 TAGKEYS( XK_1, 0)
74 TAGKEYS( XK_2, 1)
75 TAGKEYS( XK_3, 2)
76 TAGKEYS( XK_4, 3)
77 TAGKEYS( XK_5, 4)
78 TAGKEYS( XK_6, 5)
79 TAGKEYS( XK_7, 6)
80 TAGKEYS( XK_8, 7)
81 TAGKEYS( XK_9, 8)
82 { MODKEY|ShiftMask, XK_q, quit, {0} },
85 /* button definitions */
86 /* click can be ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
87 static Button buttons[] = {
88 /* click event mask button function argument */
89 { ClkLtSymbol, 0, Button1, setlayout, {0} },
90 { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
91 { ClkWinTitle, 0, Button2, zoom, {0} },
92 { ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
93 { ClkClientWin, MODKEY, Button1, movemouse, {0} },
94 { ClkClientWin, MODKEY, Button2, togglefloating, {0} },
95 { ClkClientWin, MODKEY, Button3, resizemouse, {0} },
96 { ClkTagBar, 0, Button1, view, {0} },
97 { ClkTagBar, 0, Button3, toggleview, {0} },
98 { ClkTagBar, MODKEY, Button1, tag, {0} },
99 { ClkTagBar, MODKEY, Button3, toggletag, {0} },