all repos — dwm @ b55bd709ee6d0b09c141bf5ffe0647866e0374ef

fork of suckless dynamic window manager

config.default.h (view raw)

 1/*
 2 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
 3 * See LICENSE file for license details.
 4 */
 5
 6#define TAGS \
 7const char *tags[] = { "1", "2", "3", "4", "5", NULL };
 8
 9#define DEFMODE			dotile /* dofloat */
10
11#define FONT			"fixed"
12#define SELBGCOLOR		"#666699"
13#define SELFGCOLOR		"#eeeeee"
14#define NORMBGCOLOR		"#333366"
15#define NORMFGCOLOR		"#cccccc"
16#define STATUSBGCOLOR		"#dddddd"
17#define STATUSFGCOLOR		"#222222"
18
19#define MODKEY			Mod1Mask
20#define MASTERW			60 /* percent */
21
22#define KEYS \
23static Key key[] = { \
24	/* modifier			key		function	arguments */ \
25	{ MODKEY|ShiftMask,		XK_Return,	spawn,		{ .cmd = "exec xterm" } }, \
26	{ MODKEY,			XK_Tab,		focusnext,	{ 0 } }, \
27	{ MODKEY|ShiftMask,		XK_Tab,		focusprev,	{ 0 } }, \
28	{ MODKEY,			XK_Return,	zoom,		{ 0 } }, \
29	{ MODKEY,			XK_m,		togglemax,	{ 0 } }, \
30	{ MODKEY|ShiftMask,		XK_1,		tag,		{ .i = 0 } }, \
31	{ MODKEY|ShiftMask,		XK_2,		tag,		{ .i = 1 } }, \
32	{ MODKEY|ShiftMask,		XK_3,		tag,		{ .i = 2 } }, \
33	{ MODKEY|ShiftMask,		XK_4,		tag,		{ .i = 3 } }, \
34	{ MODKEY|ShiftMask,		XK_5,		tag,		{ .i = 4 } }, \
35	{ MODKEY|ControlMask|ShiftMask,	XK_1,		toggletag,	{ .i = 0 } }, \
36	{ MODKEY|ControlMask|ShiftMask,	XK_2,		toggletag,	{ .i = 1 } }, \
37	{ MODKEY|ControlMask|ShiftMask,	XK_3,		toggletag,	{ .i = 2 } }, \
38	{ MODKEY|ControlMask|ShiftMask,	XK_4,		toggletag,	{ .i = 3 } }, \
39	{ MODKEY|ControlMask|ShiftMask,	XK_5,		toggletag,	{ .i = 4 } }, \
40	{ MODKEY|ShiftMask,		XK_c,		killclient,	{ 0 } }, \
41	{ MODKEY,			XK_space,	togglemode,	{ 0 } }, \
42	{ MODKEY,			XK_1,		view,		{ .i = 0 } }, \
43	{ MODKEY,			XK_2,		view,		{ .i = 1 } }, \
44	{ MODKEY,			XK_3,		view,		{ .i = 2 } }, \
45	{ MODKEY,			XK_4,		view,		{ .i = 3 } }, \
46	{ MODKEY,			XK_5,		view,		{ .i = 4 } }, \
47	{ MODKEY|ControlMask,		XK_1,		toggleview,	{ .i = 0 } }, \
48	{ MODKEY|ControlMask,		XK_2,		toggleview,	{ .i = 1 } }, \
49	{ MODKEY|ControlMask,		XK_3,		toggleview,	{ .i = 2 } }, \
50	{ MODKEY|ControlMask,		XK_4,		toggleview,	{ .i = 3 } }, \
51	{ MODKEY|ControlMask,		XK_5,		toggleview,	{ .i = 4 } }, \
52	{ MODKEY|ShiftMask,		XK_q,		quit,		{ 0 } }, \
53};
54
55/* Query class:instance:title for regex matching info with following command:
56 * xprop | awk -F '"' '/^WM_CLASS/ { printf("%s:%s:",$4,$2) }; /^WM_NAME/{ printf("%s\n",$2) }' */
57#define RULES \
58static Rule rule[] = { \
59	/* class:instance:title regex	tags regex	isfloat */ \
60	{ "Firefox.*",			"2",		False }, \
61	{ "Gimp.*",			NULL,		True}, \
62};