1 /* See LICENSE file for copyright and license details. */
4 static const char font
[] = "-*-terminus-medium-r-*-*-16-*-*-*-*-*-*-*";
5 static const char normbordercolor
[] = "#3E3E3E";
6 static const char normbgcolor
[] = "#2D2D2D";
7 static const char normfgcolor
[] = "#CCCCCC";
8 static const char selbordercolor
[] = "#FFFFFF";
9 static const char selbgcolor
[] = "#4C4C4C";
10 static const char selfgcolor
[] = "#CCCCCC";
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", "web", "tor", "com" };
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 << 6, 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 */
30 #include "bstackhoriz.c"
32 static const Layout layouts
[] = {
33 /* symbol arrange function */
34 { "TTT", bstack
}, /* default */
35 { "===", bstackhoriz
},
37 { "><>", NULL
}, /* no layout function means floating behavior */
42 #define MODKEY Mod1Mask
43 #define WINKEY Mod4Mask
44 #define TAGKEYS(KEY,TAG) \
45 { MODKEY, KEY, view, {.ui = 1 << TAG} }, \
46 { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
47 { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
48 { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
50 /* helper for spawning shell commands in the pre dwm-5.0 fashion */
51 #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
54 static const char *dmenucmd
[] = { "dmenu_run", "-fn", font
, "-nb", normbgcolor
, "-nf", normfgcolor
, "-sb", selbgcolor
, "-sf", selfgcolor
, NULL
};
55 static const char *termcmd
[] = { "roxterm", NULL
};
58 /* modifier key function argument */
59 { MODKEY
, XK_p
, spawn
, {.v
= dmenucmd
} },
60 { MODKEY
|ShiftMask
, XK_Return
, spawn
, {.v
= termcmd
} },
61 { MODKEY
, XK_b
, togglebar
, {0} },
62 { MODKEY
, XK_j
, focusstack
, {.i
= +1 } },
63 { MODKEY
, XK_k
, focusstack
, {.i
= -1 } },
64 { MODKEY
, XK_h
, setmfact
, {.f
= -0.05} },
65 { MODKEY
, XK_l
, setmfact
, {.f
= +0.05} },
66 { MODKEY
, XK_Return
, zoom
, {0} },
67 { MODKEY
, XK_Tab
, view
, {0} },
68 { MODKEY
|ShiftMask
, XK_c
, killclient
, {0} },
69 { WINKEY
, XK_1
, setlayout
, {.v
= &layouts
[0]} },
70 { WINKEY
, XK_2
, setlayout
, {.v
= &layouts
[1]} },
71 { WINKEY
, XK_3
, setlayout
, {.v
= &layouts
[2]} },
72 { WINKEY
, XK_4
, setlayout
, {.v
= &layouts
[3]} },
73 { WINKEY
, XK_5
, setlayout
, {.v
= &layouts
[4]} },
74 { MODKEY
, XK_space
, setlayout
, {0} },
75 { MODKEY
|ShiftMask
, XK_space
, togglefloating
, {0} },
76 { MODKEY
, XK_0
, view
, {.ui
= ~0 } },
77 { MODKEY
|ShiftMask
, XK_0
, tag
, {.ui
= ~0 } },
78 { MODKEY
, XK_comma
, focusmon
, {.i
= -1 } },
79 { MODKEY
, XK_period
, focusmon
, {.i
= +1 } },
80 { MODKEY
|ShiftMask
, XK_comma
, tagmon
, {.i
= -1 } },
81 { MODKEY
|ShiftMask
, XK_period
, tagmon
, {.i
= +1 } },
91 { MODKEY
|ShiftMask
, XK_q
, quit
, {0} },
94 /* button definitions */
95 /* click can be ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
96 static Button buttons
[] = {
97 /* click event mask button function argument */
98 { ClkLtSymbol
, 0, Button1
, setlayout
, {0} },
99 { ClkLtSymbol
, 0, Button3
, setlayout
, {.v
= &layouts
[2]} },
100 { ClkWinTitle
, 0, Button2
, zoom
, {0} },
101 { ClkStatusText
, 0, Button2
, spawn
, {.v
= termcmd
} },
102 { ClkClientWin
, MODKEY
, Button1
, movemouse
, {0} },
103 { ClkClientWin
, MODKEY
, Button2
, togglefloating
, {0} },
104 { ClkClientWin
, MODKEY
, Button3
, resizemouse
, {0} },
105 { ClkTagBar
, 0, Button1
, view
, {0} },
106 { ClkTagBar
, 0, Button3
, toggleview
, {0} },
107 { ClkTagBar
, MODKEY
, Button1
, tag
, {0} },
108 { ClkTagBar
, MODKEY
, Button3
, toggletag
, {0} },