updated on Wed Jan 11 20:01:35 UTC 2012
[aur-mirror.git] / dwm-krash / config.h
blob728f0fcb08f3b9cedd8c006d50295425c1cccf58
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 static const unsigned int offsettoppx = 0;
17 static const unsigned int offsetbottompx = 0;
19 /* tagging */
20 static const char *tags[] = { "term", "term", "term", "term", "media", "mail", "web", "mess" };
22 static const Rule rules[] = {
23 /* class instance title tags mask isfloating monitor */
24 { "MPlayer", NULL, NULL, 0, True, -1 },
27 /* layout(s) */
28 static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
29 static const Bool resizehints = True; /* True means respect size hints in tiled resizals */
31 static const Layout layouts[] = {
32 /* symbol arrange function */
33 { "[]=", tile }, /* first entry is default */
34 { "><>", NULL }, /* no layout function means floating behavior */
35 { "[M]", monocle },
38 /* key definitions */
39 #define MODKEY Mod1Mask
40 #define TAGKEYS(KEY,TAG) \
41 { MODKEY, KEY, view, {.ui = 1 << TAG} }, \
42 { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
43 { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
44 { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
46 /* helper for spawning shell commands in the pre dwm-5.0 fashion */
47 #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
49 /* commands */
50 static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
51 static const char *termcmd[] = { "urxvtc", NULL };
53 static Key keys[] = {
54 /* modifier key function argument */
55 { MODKEY, XK_d, spawn, {.v = dmenucmd } },
56 { MODKEY, XK_x, spawn, {.v = termcmd } },
57 { MODKEY, XK_b, togglebar, {0} },
58 { MODKEY, XK_j, focusstack, {.i = +1 } },
59 { MODKEY, XK_k, focusstack, {.i = -1 } },
60 { MODKEY, XK_h, setmfact, {.f = -0.05} },
61 { MODKEY, XK_l, setmfact, {.f = +0.05} },
62 { MODKEY, XK_Return, zoom, {0} },
63 //{ MODKEY, XK_Tab, view, {0} },
64 { MODKEY|ShiftMask, XK_q, killclient, {0} },
65 //{ MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
66 //{ MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
67 //{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
68 { MODKEY, XK_space, setlayout, {0} },
69 { MODKEY|ShiftMask, XK_space, togglefloating, {0} },
70 //{ MODKEY, XK_0, view, {.ui = ~0 } },
71 { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
72 { MODKEY, XK_comma, focusmon, {.i = -1 } },
73 { MODKEY, XK_period, focusmon, {.i = +1 } },
74 { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
75 { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
76 TAGKEYS( XK_F1, 0)
77 TAGKEYS( XK_F2, 1)
78 TAGKEYS( XK_F3, 2)
79 TAGKEYS( XK_F4, 3)
80 TAGKEYS( XK_F5, 4)
81 TAGKEYS( XK_F6, 5)
82 TAGKEYS( XK_F7, 6)
83 TAGKEYS( XK_F8, 7)
84 //TAGKEYS( XK_F9, 8)
85 { MODKEY|ShiftMask, XK_F12, quit, {0} },
88 /* button definitions */
89 /* click can be ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
90 static Button buttons[] = {
91 /* click event mask button function argument */
92 { ClkLtSymbol, 0, Button1, setlayout, {0} },
93 { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
94 { ClkWinTitle, 0, Button2, zoom, {0} },
95 { ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
96 { ClkClientWin, MODKEY, Button1, movemouse, {0} },
97 { ClkClientWin, MODKEY, Button2, togglefloating, {0} },
98 { ClkClientWin, MODKEY, Button3, resizemouse, {0} },
99 { ClkTagBar, 0, Button1, view, {0} },
100 { ClkTagBar, 0, Button3, toggleview, {0} },
101 { ClkTagBar, MODKEY, Button1, tag, {0} },
102 { ClkTagBar, MODKEY, Button3, toggletag, {0} },