updated on Thu Jan 26 12:02:26 UTC 2012
[aur-mirror.git] / dwm-hg-patches / config.h
blob6a290e2b36b074fe2895509a2db1851af70af755
1 /* See LICENSE file for copyright and license details. */
3 /* appearance */
4 static const char font[] = "-*-*-medium-*-*-*-14-*-*-*-*-*-*-*";
5 static const char normbordercolor[] = "#cccccc";
6 static const char normbgcolor[] = "#cccccc";
7 static const char normfgcolor[] = "#000000";
8 static const char selbordercolor[] = "#0066ff";
9 static const char selbgcolor[] = "#0066ff";
10 static const char selfgcolor[] = "#ffffff";
11 static const unsigned int borderpx = 1; /* border pixel of windows */
12 static const unsigned int gappx = 6; /* gap pixel between windows */
13 static const unsigned int snap = 32; /* snap pixel */
14 static const double shade = 0.6; /* opacity of unfocussed clients */
15 static const Bool showbar = True; /* False means no bar */
16 static const Bool topbar = True; /* False means bottom bar */
18 /* tagging */
19 static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
21 static const Rule rules[] = {
22 /* class instance title tags mask isfloating monitor opacity */
23 { "Gimp", NULL, NULL, 0, True, -1, -1 },
24 { "Firefox", NULL, NULL, 1 << 8, False, -1, -1 },
25 { "URxvt", NULL, NULL, 0, False, -1, 0.95 },
28 /* layout(s) */
29 static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
30 static const Bool resizehints = True; /* True means respect size hints in tiled resizals */
32 static const Layout layouts[] = {
33 /* symbol arrange function */
34 { "[]=", tile }, /* first entry is default */
35 { "><>", NULL }, /* no layout function means floating behavior */
36 { "[M]", monocle },
39 /* key definitions */
40 #define MODKEY Mod1Mask
41 #define TAGKEYS(KEY,TAG) \
42 { MODKEY, KEY, view, {.ui = 1 << TAG} }, \
43 { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
44 { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
45 { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
47 /* helper for spawning shell commands in the pre dwm-5.0 fashion */
48 #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
50 /* commands */
51 static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
52 static const char *termcmd[] = { "uxterm", NULL };
54 static Key keys[] = {
55 /* modifier key function argument */
56 { MODKEY, XK_p, spawn, {.v = dmenucmd } },
57 { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
58 { MODKEY, XK_b, togglebar, {0} },
59 { MODKEY, XK_j, focusstack, {.i = +1 } },
60 { MODKEY, XK_k, focusstack, {.i = -1 } },
61 { MODKEY, XK_h, setmfact, {.f = -0.05} },
62 { MODKEY, XK_l, setmfact, {.f = +0.05} },
63 { MODKEY, XK_Return, zoom, {0} },
64 { MODKEY, XK_Tab, view, {0} },
65 { MODKEY|ShiftMask, XK_c, killclient, {0} },
66 { MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
67 { MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
68 { MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
69 { MODKEY, XK_space, setlayout, {0} },
70 { MODKEY|ShiftMask, XK_space, togglefloating, {0} },
71 { MODKEY, XK_0, view, {.ui = ~0 } },
72 { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
73 { MODKEY, XK_comma, focusmon, {.i = -1 } },
74 { MODKEY, XK_period, focusmon, {.i = +1 } },
75 { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
76 { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
77 TAGKEYS( XK_1, 0)
78 TAGKEYS( XK_2, 1)
79 TAGKEYS( XK_3, 2)
80 TAGKEYS( XK_4, 3)
81 TAGKEYS( XK_5, 4)
82 TAGKEYS( XK_6, 5)
83 TAGKEYS( XK_7, 6)
84 TAGKEYS( XK_8, 7)
85 TAGKEYS( XK_9, 8)
86 { MODKEY|ShiftMask, XK_q, quit, {0} },
89 /* button definitions */
90 /* click can be ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
91 static Button buttons[] = {
92 /* click event mask button function argument */
93 { ClkLtSymbol, 0, Button1, setlayout, {0} },
94 { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
95 { ClkWinTitle, 0, Button2, zoom, {0} },
96 { ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
97 { ClkClientWin, MODKEY, Button1, movemouse, {0} },
98 { ClkClientWin, MODKEY, Button2, togglefloating, {0} },
99 { ClkClientWin, MODKEY, Button3, resizemouse, {0} },
100 { ClkTagBar, 0, Button1, view, {0} },
101 { ClkTagBar, 0, Button3, toggleview, {0} },
102 { ClkTagBar, MODKEY, Button1, tag, {0} },
103 { ClkTagBar, MODKEY, Button3, toggletag, {0} },