1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
|
/* See LICENSE file for copyright and license details. */
/* XF86 keys */
#define VOLDOWN 0x1008FF11 /* Volume control down */
#define VOLMUTE 0x1008FF12 /* Mute sound from the system */
#define VOLUP 0x1008FF13 /* Volume control up */
#define BLUP 0x1008FF02 /* Monitor brightness up */
#define BLDOWN 0x1008FF03 /* Monitor brightness down */
#define SEARCH 0x1008FF1B /* Focus mode */
#define TPAD 0x1008FF4A /* Trackpad lock */
#define PRINT 0x1008FF5D /* Print screen */
// audio output key bindings
//#define ALSA
#define PULSEAUDIO
/* appearance */
static const char font[] = "DVIcons:size=8";
#define NUMCOLORS 5 // need at least 3
static const char colors[NUMCOLORS][ColLast][8] = {
// border foreground background
{ "#555753", "#888a85", "#2e3436" }, // 0 = normal
{ "#729fcf", "#729fcf", "#2e3436" }, // 1 = selected
{ "#ffffff", "#edd400", "#2e3436" }, // 2 = urgent/warning
{ "#ffffff", "#ef2929", "#2e3436" }, // 3 = error
{ "#ffffff", "#d3d7cf", "#2e3436" }, // 4 = statusbar
};
static const unsigned int borderpx = 1; /* border pixel of windows */
static const unsigned int snap = 8; /* snap pixel */
static const Bool showbar = True; /* False means no bar */
static const Bool topbar = False; /* False means bottom bar */
static const Bool showtitle = False; /* True means titles are shown on bar */
/* Display modes of the tab bar: never shown, always shown, shown only in */
/* monocle mode in presence of several windows. */
/* A mode can be disabled by moving it after the showtab_nmodes end marker */
enum showtab_modes { showtab_never, showtab_auto, showtab_nmodes, showtab_always};
static const int showtab = showtab_auto; /* Default tab bar show mode */
static const Bool toptab = True; /* False means bottom tab bar */
/* Productivity lock timeout in seconds - when the productivity lock is enabled, it is */
/* impossible to change view and toggle tags for the duration of the timeout */
static const long ptimeout = 1800;
/* tags web chat work office media win7 gp gp gp */
static const char *tags[] = { "\uE372", "\uE21B", "\uE3A9", "\uE0F2", "\uE140", "\uE343", "\uE027", "\uE027", "\uE027" };
/*
web: E372
media: E140
office: E0F2
file manager: E235
chat: E21B
work: E3A9
win7: E343
gp: E027
*/
/* default layout per tags */
/* The first element is for all-tag view, following i-th element corresponds to */
/* tags[i]. Layout is referred using the layouts array index.*/
/* tags all web chat work office media win7 gp gp gp */
static int def_layouts[1 + LENGTH(tags)] = { 0, 0, 0, 0, 2, 2, 2, 0, 0, 0 };
/* rules */
static const Rule rules[] = {
/* class instance title tags mask isfloating monitor */
/* WM_CLASS WM_CLASS WM_NAME */
//{ NULL, NULL, NULL, 0, False, -1 },
{ "Surf", "surf", NULL, 1 << 0, False, -1 },
{ "Chromium", "chromium", NULL, 1 << 0, False, -1 },
{ "Firefox", "Navigator", NULL, 1 << 0, False, -1 },
{ "Thunderbird", "Mail", NULL, 1 << 1, False, -1 },
{ "TelegramDesktop", "telegram-desktop", "Telegram", 1 << 1, False, -1 },
{ "Slack", "slack", NULL, 1 << 1, False, -1},
{ "whatsapp-desktop", "whatsapp-desktop", NULL, 1 << 1, False, -1},
{ "Rocket.Chat+", "rocket.chat+", NULL, 1 << 1, False, -1},
{ "Eclipse", "Eclipse", NULL, 1 << 2, False, -1 },
{ "jetbrains-idea", "sun-awt-X11-XFramePeer", NULL, 1 << 2, False, -1 },
{ "jetbrains-studio", "sun-awt-X11-XFramePeer", NULL, 1 << 2, False, -1 },
{ "TeXstudio", "texstudio", NULL, 1 << 3, False, -1 },
{ "Abiword", "abiword", NULL, 1 << 3, False, -1 },
{ "Gnumeric", "gnumeric", NULL, 1 << 3, False, -1 },
{ "Deadbeef", "deadbeef", NULL, 1 << 4, False, -1 },
{ "Vlc", "vlc", NULL, 1 << 4, False, -1 },
};
/* layout(s) */
static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
static const int nmaster = 1; /* number of clients in master area */
static const Bool resizehints = False; /* True means respect size hints in tiled resizals */
static const Layout layouts[] = {
/* symbol arrange function */
{ "[]=", tile }, /* first entry is default */
{ "><>", NULL }, /* no layout function means floating behavior */
{ "[M]", monocle },
};
/* key definitions */
#define MODKEY Mod4Mask
#define TAGKEYS(KEY,TAG) \
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
{ MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
{ MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
/* helper for spawning shell commands in the pre dwm-5.0 fashion */
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
/* commands */
static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", colors[0][ColBG], "-nf", colors[0][ColFG],"-sb", colors[1][ColBG], "-sf", colors[1][ColFG], NULL };
static const char *termcmd[] = { "xterm", NULL };
static const char *browsercmd[] = { "chromium", NULL };
static const char *emailcmd[] = { "thunderbird", NULL };
static const char *playercmd[] = { "deadbeef", NULL };
static const char *editorcmd[] = { "gedit", NULL };
static const char *scrotcmd[] = { "scrot", "/home/eddy/screenshots/%Y-%m-%d-%H:%M:%S.png", NULL };
static const char *lockcmd[] = { "i3lock", "-c", "000000", NULL };
#if defined(ALSA)
static const char *lowervolumecmd[] = { "amixer", "-q", "set", "Master", "2dB-", NULL };
static const char *raisevolumecmd[] = { "amixer", "-q", "set", "Master", "2dB+", NULL };
static const char *mutevolumecmd[] = { "amixer", "-q", "set", "Master", "toggle", NULL };
#elif defined(PULSEAUDIO)
static const char *lowervolumecmd[] = { "pactl", "set-sink-volume", "0", "+2%", NULL };
static const char *raisevolumecmd[] = { "pactl", "set-sink-volume", "0", "-2%", NULL };
static const char *mutevolumecmd[] = { "pactl", "set-sink-mute", "0", "toggle", NULL };
#endif
static const char *raisebrightness[] = { "xbacklight", "-set", "20", NULL };
static const char *lowerbrightness[] = { "xbacklight", "-set", "1", NULL };
static const char *toggletrackpad[] = { "toggle-trackpad", NULL };
static Key keys[] = {
/* modifier key function argument */
{ MODKEY, XK_d, spawn, {.v = dmenucmd } },
{ MODKEY, XK_Return, spawn, {.v = termcmd } },
{ MODKEY, XK_t, spawn, {.v = browsercmd } },
{ MODKEY|ShiftMask, XK_p, spawn, {.v = playercmd } },
//{ MODKEY|ShiftMask, XK_o, spawn, {.v = emailcmd } },
{ MODKEY|ShiftMask, XK_i, spawn, {.v = editorcmd } },
{ MODKEY, XK_p, spawn, {.v = lockcmd } },
{ 0, PRINT, spawn, {.v = scrotcmd } },
{ 0, SEARCH, prodlock, {0} },
{ 0, TPAD, spawn, {.v = toggletrackpad} },
{ MODKEY, XK_h, focusstack, {.i = -1 } },
{ MODKEY, XK_l, focusstack, {.i = +1 } },
{ MODKEY, XK_k, incnmaster, {.i = +1 } },
{ MODKEY, XK_j, incnmaster, {.i = -1 } },
{ MODKEY|ShiftMask, XK_h, setmfact, {.f = -0.05} },
{ MODKEY|ShiftMask, XK_l, setmfact, {.f = +0.05} },
{ MODKEY|ShiftMask, XK_Return, zoom, {0} },
//{ MODKEY, XK_Tab, view, {0} },
{ MODKEY, XK_e, setlayout, {.v = &layouts[0]} },
{ MODKEY, XK_r, setlayout, {.v = &layouts[1]} },
{ MODKEY, XK_w, setlayout, {.v = &layouts[2]} },
//{ MODKEY, XK_space, setlayout, {0} },
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
//{ MODKEY, XK_0, view, {.ui = ~0 } },
//{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
{ MODKEY, XK_comma, focusmon, {.i = -1 } },
{ MODKEY, XK_period, focusmon, {.i = +1 } },
{ MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
{ MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
TAGKEYS( XK_n, 0) // web
TAGKEYS( XK_b, 1) // chat
TAGKEYS( XK_a, 2) // work
TAGKEYS( XK_s, 3) // office
TAGKEYS( XK_m, 4) // media
TAGKEYS( XK_v, 5) // win7
TAGKEYS( XK_1, 6) // gp
TAGKEYS( XK_2, 7) // gp
TAGKEYS( XK_3, 8) // gp
{ 0, VOLUP, spawn, {.v = raisevolumecmd } },
{ 0, VOLDOWN, spawn, {.v = lowervolumecmd } },
{ 0, VOLMUTE, spawn, {.v = mutevolumecmd } },
{ 0, BLUP, spawn, {.v = raisebrightness } },
{ 0, BLDOWN, spawn, {.v = lowerbrightness } },
{ MODKEY|ShiftMask, XK_q, killclient, {0} },
{ MODKEY|ShiftMask, XK_e, quit, {0} },
};
/* button definitions */
/* click can be ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
static Button buttons[] = {
/* click event mask button function argument */
/*{ ClkLtSymbol, 0, Button1, setlayout, {0} },
{ ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
{ ClkWinTitle, 0, Button2, zoom, {0} },
{ ClkStatusText, 0, Button2, spawn, {.v = termcmd } },*/
{ ClkClientWin, MODKEY, Button1, movemouse, {0} },
//{ ClkClientWin, MODKEY, Button2, togglefloating, {0} },
{ ClkClientWin, MODKEY, Button3, resizemouse, {0} },
/*{ ClkTagBar, 0, Button1, view, {0} },
{ ClkTagBar, 0, Button3, toggleview, {0} },
{ ClkTagBar, MODKEY, Button1, tag, {0} },
{ ClkTagBar, MODKEY, Button3, toggletag, {0} },
{ ClkTabBar, 0, Button1, focuswin, {0} },*/
};
|