Xinqi Bao's Git
1 /* See LICENSE file for copyright and license details. */
4 static const char font
[] = "-*-terminus-medium-r-*-*-16-*-*-*-*-*-*-*";
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 snap
= 32; /* snap pixel */
13 static const Bool showbar
= True
; /* False means no bar */
14 static const Bool topbar
= True
; /* False means bottom bar */
17 static const char *tags
[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
19 static const Rule rules
[] = {
20 /* class instance title tags mask isfloating monitor */
21 { "Gimp", NULL
, NULL
, 0, True
, -1 },
22 { "Firefox", NULL
, NULL
, 1 << 8, False
, -1 },
26 static const float mfact
= 0.55; /* factor of master area size [0.05..0.95] */
27 static const Bool resizehints
= True
; /* True means respect size hints in tiled resizals */
29 static const Layout layouts
[] = {
30 /* symbol arrange function */
31 { "[]=", tile
}, /* first entry is default */
32 { "><>", NULL
}, /* no layout function means floating behavior */
37 #define MODKEY Mod1Mask
38 #define TAGKEYS(KEY,TAG) \
39 { MODKEY, KEY, view, {.ui = 1 << TAG} }, \
40 { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
41 { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
42 { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
44 /* helper for spawning shell commands in the pre dwm-5.0 fashion */
45 #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
48 static const char *dmenucmd
[] = { "dmenu_run", "-fn", font
, "-nb", normbgcolor
, "-nf", normfgcolor
, "-sb", selbgcolor
, "-sf", selfgcolor
, NULL
};
49 static const char *termcmd
[] = { "uxterm", NULL
};
52 /* modifier key function argument */
53 { MODKEY
, XK_p
, spawn
, {.v
= dmenucmd
} },
54 { MODKEY
|ShiftMask
, XK_Return
, spawn
, {.v
= termcmd
} },
55 { MODKEY
, XK_b
, togglebar
, {0} },
56 { MODKEY
, XK_j
, focusstack
, {.i
= +1 } },
57 { MODKEY
, XK_k
, focusstack
, {.i
= -1 } },
58 { MODKEY
, XK_h
, setmfact
, {.f
= -0.05} },
59 { MODKEY
, XK_l
, setmfact
, {.f
= +0.05} },
60 { MODKEY
, XK_Return
, zoom
, {0} },
61 { MODKEY
, XK_Tab
, view
, {0} },
62 { MODKEY
|ShiftMask
, XK_c
, killclient
, {0} },
63 { MODKEY
, XK_t
, setlayout
, {.v
= &layouts
[0]} },
64 { MODKEY
, XK_f
, setlayout
, {.v
= &layouts
[1]} },
65 { MODKEY
, XK_m
, setlayout
, {.v
= &layouts
[2]} },
66 { MODKEY
, XK_space
, setlayout
, {0} },
67 { MODKEY
|ShiftMask
, XK_space
, togglefloating
, {0} },
68 { MODKEY
, XK_0
, view
, {.ui
= ~0 } },
69 { MODKEY
|ShiftMask
, XK_0
, tag
, {.ui
= ~0 } },
70 { MODKEY
, XK_comma
, focusmon
, {.i
= -1 } },
71 { MODKEY
, XK_period
, focusmon
, {.i
= +1 } },
72 { MODKEY
|ShiftMask
, XK_comma
, tagmon
, {.i
= -1 } },
73 { MODKEY
|ShiftMask
, XK_period
, tagmon
, {.i
= +1 } },
83 { MODKEY
|ShiftMask
, XK_q
, quit
, {0} },
86 /* button definitions */
87 /* click can be ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
88 static Button buttons
[] = {
89 /* click event mask button function argument */
90 { ClkLtSymbol
, 0, Button1
, setlayout
, {0} },
91 { ClkLtSymbol
, 0, Button3
, setlayout
, {.v
= &layouts
[2]} },
92 { ClkWinTitle
, 0, Button2
, zoom
, {0} },
93 { ClkStatusText
, 0, Button2
, spawn
, {.v
= termcmd
} },
94 { ClkClientWin
, MODKEY
, Button1
, movemouse
, {0} },
95 { ClkClientWin
, MODKEY
, Button2
, togglefloating
, {0} },
96 { ClkClientWin
, MODKEY
, Button3
, resizemouse
, {0} },
97 { ClkTagBar
, 0, Button1
, view
, {0} },
98 { ClkTagBar
, 0, Button3
, toggleview
, {0} },
99 { ClkTagBar
, MODKEY
, Button1
, tag
, {0} },
100 { ClkTagBar
, MODKEY
, Button3
, toggletag
, {0} },