Xinqi Bao's Git
6ebca7c9b890d371463a09d3f01aca7dc7bd27e3
1 /* See LICENSE file for copyright and license details. */
4 #define SHOWBAR True /* False means no bar */
5 #define TOPBAR True /* False means bottom bar */
6 static const char font
[] = "-*-*-medium-*-*-*-14-*-*-*-*-*-*-*";
7 static const char normbordercolor
[] = "#cccccc";
8 static const char normbgcolor
[] = "#cccccc";
9 static const char normfgcolor
[] = "#000000";
10 static const char selbordercolor
[] = "#0066ff";
11 static const char selbgcolor
[] = "#0066ff";
12 static const char selfgcolor
[] = "#ffffff";
13 static unsigned int borderpx
= 1; /* border pixel of windows */
14 static unsigned int snap
= 32; /* snap pixel */
16 /* monitor(s) symbols */
17 static const char *monsyms
[] = { "0x1", "0x2", "0x3", "0x4", "0x5" };
20 static const char *tags
[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
22 static Rule rules
[] = {
23 /* class instance title tags mask isfloating */
24 { "Gimp", NULL
, NULL
, 0, True
},
25 { "Firefox", NULL
, NULL
, 1 << 8, False
},
30 static float mfact
= 0.55; /* factor of master area size [0.05..0.95] */
31 static Bool resizehints
= True
; /* False means respect size hints in tiled resizals */
33 static Layout layouts
[] = {
34 /* symbol arrange function */
35 { "[]=", tile
}, /* first entry is default */
36 { "><>", NULL
}, /* no layout function means floating behavior */
41 #define MODKEY Mod1Mask
42 #define TAGKEYS(KEY,TAG) \
43 { MODKEY, KEY, view, {.ui = 1 << TAG} }, \
44 { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
45 { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
46 { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
48 /* helper for spawning shell commands in the pre dwm-5.0 fashion */
49 #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
52 static const char *dmenucmd
[] = { "dmenu_run", "-fn", font
, "-nb", normbgcolor
, "-nf", normfgcolor
, "-sb", selbgcolor
, "-sf", selfgcolor
, NULL
};
53 static const char *termcmd
[] = { "uxterm", NULL
};
56 /* modifier key function argument */
57 { MODKEY
, XK_p
, spawn
, {.v
= dmenucmd
} },
58 { MODKEY
|ShiftMask
, XK_Return
, spawn
, {.v
= termcmd
} },
59 { MODKEY
, XK_b
, togglebar
, {0} },
60 { MODKEY
, XK_j
, focusstack
, {.i
= +1 } },
61 { MODKEY
, XK_k
, focusstack
, {.i
= -1 } },
62 { MODKEY
, XK_h
, setmfact
, {.f
= -0.05} },
63 { MODKEY
, XK_l
, setmfact
, {.f
= +0.05} },
64 { MODKEY
, XK_Return
, zoom
, {0} },
65 { MODKEY
, XK_Tab
, view
, {0} },
66 { MODKEY
|ShiftMask
, XK_c
, killclient
, {0} },
67 { MODKEY
, XK_t
, setlayout
, {.v
= &layouts
[0]} },
68 { MODKEY
, XK_f
, setlayout
, {.v
= &layouts
[1]} },
69 { MODKEY
, XK_m
, setlayout
, {.v
= &layouts
[2]} },
70 { MODKEY
, XK_space
, setlayout
, {0} },
71 { MODKEY
|ShiftMask
, XK_space
, togglefloating
, {0} },
72 { MODKEY
, XK_0
, view
, {.ui
= ~0 } },
73 { MODKEY
|ShiftMask
, XK_0
, tag
, {.ui
= ~0 } },
74 { MODKEY
, XK_w
, focusmon
, {.ui
= 0 } },
75 { MODKEY
, XK_e
, focusmon
, {.ui
= 1 } },
76 { MODKEY
|ShiftMask
, XK_w
, tagmon
, {.ui
= 0 } },
77 { MODKEY
|ShiftMask
, XK_e
, tagmon
, {.ui
= 1 } },
87 { MODKEY
|ShiftMask
, XK_q
, quit
, {0} },
90 /* button definitions */
91 /* click can be a tag number (starting at 0),
92 * ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
93 static Button buttons
[] = {
94 /* click event mask button function argument */
95 { ClkLtSymbol
, 0, Button1
, setlayout
, {0} },
96 { ClkLtSymbol
, 0, Button3
, setlayout
, {.v
= &layouts
[2]} },
97 { ClkWinTitle
, 0, Button2
, zoom
, {0} },
98 { ClkStatusText
, 0, Button2
, spawn
, {.v
= termcmd
} },
99 { ClkClientWin
, MODKEY
, Button1
, movemouse
, {0} },
100 { ClkClientWin
, MODKEY
, Button2
, togglefloating
, {0} },
101 { ClkClientWin
, MODKEY
, Button3
, resizemouse
, {0} },
102 { ClkTagBar
, 0, Button1
, view
, {0} },
103 { ClkTagBar
, 0, Button3
, toggleview
, {0} },
104 { ClkTagBar
, MODKEY
, Button1
, tag
, {0} },
105 { ClkTagBar
, MODKEY
, Button3
, toggletag
, {0} },