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
|
/*
Copyright © 2020 tslil clingman
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
“Software”), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/* appearance */
static const unsigned int borderpx = 2; /* border pixel of windows */
static const unsigned int gappx = 6; /* gaps between windows */
static const unsigned int snap = 32; /* snap pixel */
static const unsigned int systraypinning = 0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */
static const unsigned int systrayspacing = 2; /* systray spacing */
static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display systray on the first monitor, False: display systray on the last monitor*/
static const int showsystray = 1; /* 0 means no systray */
static const int rmaster = 0; /* 1 means master-area is initially on the right */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 0; /* 0 means bottom bar */
static const char *fonts[] = { "Iosevka Slab-10" };
static const char col_gray1[] = "#222222";
static const char col_gray3[] = "#bbbbbb";
static const char col_dom0[] = "dark orange";
/* Dom0 Colors, tagbar and status bar */
static const char *colors[][2] = {
/* fg bg */
[SchemeNorm] = { col_gray3, col_gray1 },
[SchemeSel] = { col_gray1, col_dom0 },
};
/* tagging */
static const char *tags[] = { "L", "U", "Y", ";", "Q", "W", "F", "P", "B" };
static const Rule rules[] = {
/* xprop(1):
* WM_CLASS(STRING) = instance, class
* WM_NAME(STRING) = title
*/
/* class instance title tags-mask isfloating monitor */
{ NULL, NULL, "Request from ", 0, True, -1}, /* float confirmation dialogs */
{ NULL, NULL, "Enter tomb password.", 0, True, -1}, /* float password entry dialogs */
// { NULL, NULL, NULL, 0, False, -1},
};
/* layout(s) */
static const float mfact = 0.60; /* factor of master area size [0.05..0.95], rmaster takes the complement of this? */
static const int nmaster = 1; /* number of clients in master area */
static const int resizehints = 0; /* 1 means respect size hints in tiled resizals */
static const Layout layouts[] = {
/* symbol arrange function */
{ "[]=", tile }, /* first entry is default */
{ "[M]", monocle },
{ "[D]", deck },
{ "TTT", bstack },
{ "===", bstackhoriz },
{ "><>", NULL }, /* no layout function means floating behavior */
};
/* 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 char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
static const char *dmenu_all[] = { "dmenu_all", "-m", dmenumon, NULL };
static const char *dmenu_cur[] = { "dmenu_cur", "-m", dmenumon, NULL };
static const char *term_cur[] = { "sensible_terminal", NULL };
static const char *term_dom0[] = { "st", NULL };
#include <X11/XF86keysym.h>
// For some reason this registers as battery despite being lock on the keyboard
#define XF86Battery 0x1008ff93
static const char *lock[] = { "loginctl", "lock-session" , NULL };
static const char *togglelock[] = { "toggle_autolock", NULL };
#define XF86MonBrightnessUp 0x1008ff02
#define XF86MonBrightnessDown 0x1008ff03
static const char *brightnessup[] = { "xbacklight", "-inc", "3", NULL };
static const char *brightnessdn[] = { "xbacklight", "-dec", "3", NULL };
static const char *upvol[] = { "/usr/bin/pactl", "set-sink-volume", "0", "+5%", NULL };
static const char *downvol[] = { "/usr/bin/pactl", "set-sink-volume", "0", "-5%", NULL };
static const char *mutevol[] = { "/usr/bin/pactl", "set-sink-mute", "0", "toggle", NULL };
static Key keys[] = {
/* modifier key function argument */
// Top level keys
{ 0, XF86MonBrightnessUp, spawn, {.v = brightnessup } },
{ 0, XF86MonBrightnessDown, spawn, {.v = brightnessdn } },
{ 0, XF86Battery, spawn, {.v = lock } },
{ ShiftMask, XF86Battery, spawn, {.v = togglelock } },
{ 0, XF86XK_AudioLowerVolume, spawn, {.v = downvol } },
{ 0, XF86XK_AudioMute, spawn, {.v = mutevol } },
{ 0, XF86XK_AudioRaiseVolume, spawn, {.v = upvol } },
// Programmes
{ MODKEY, XK_space, spawn, {.v = dmenu_cur } },
{ MODKEY|ShiftMask, XK_space, spawn, {.v = dmenu_all} },
{ MODKEY, XK_t, spawn, {.v = term_cur } },
{ MODKEY|ShiftMask, XK_t, spawn, {.v = term_dom0 } },
{ MODKEY, XK_h, spawn, {.v = lock } },
{ MODKEY|ShiftMask, XK_h, spawn, {.v = togglelock } },
// Window management
{ MODKEY, XK_n, focusstack, {.i = +1 } },
{ MODKEY, XK_o, focusstack, {.i = -1 } },
{ MODKEY|ShiftMask, XK_i, incnmaster, {.i = +1 } },
{ MODKEY|ShiftMask, XK_e, incnmaster, {.i = -1 } },
{ MODKEY, XK_m, togglermaster, {0} },
{ MODKEY, XK_i, setmfact, {.f = +0.05} },
{ MODKEY, XK_e, setmfact, {.f = -0.05} },
{ MODKEY, XK_Return, zoom, {0} },
{ MODKEY, XK_Tab, view, {0} },
{ MODKEY, XK_a, setlayout, {.v = &layouts[0]} },
{ MODKEY, XK_r, setlayout, {.v = &layouts[1]} },
{ MODKEY, XK_s, setlayout, {.v = &layouts[2]} },
{ MODKEY|ShiftMask, XK_a, setlayout, {.v = &layouts[3]} },
{ MODKEY|ShiftMask, XK_r, setlayout, {.v = &layouts[4]} },
{ MODKEY|ControlMask, XK_space, setlayout, {.v = &layouts[5]} },
{ MODKEY, XK_d, togglefloating, {0} },
{ MODKEY, XK_comma, focusmon, {.i = -1 } },
{ MODKEY, XK_period, focusmon, {.i = +1 } },
{ MODKEY|ShiftMask, XK_k, killclient, {0} },
{ MODKEY|ShiftMask|ControlMask, XK_q, quit, {0} },
// Tags
{ MODKEY, XK_0, view, {.ui = ~0 } },
{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
{ MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
{ MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
TAGKEYS( XK_l, 0)
TAGKEYS( XK_u, 1)
TAGKEYS( XK_y, 2)
TAGKEYS( XK_semicolon, 3)
TAGKEYS( XK_q, 4)
TAGKEYS( XK_w, 5)
TAGKEYS( XK_f, 6)
TAGKEYS( XK_p, 7)
TAGKEYS( XK_b, 8)
};
/* button definitions */
/* click can be ClkTagBar, 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 = term_dom0 } },
{ 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} },
};
|