-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.def.h
203 lines (187 loc) · 12 KB
/
config.def.h
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
/* appearance */
#include <X11/XF86keysym.h>
static const unsigned int refresh_rate = 60;
static const unsigned int enable_noborder = 1;
static const unsigned int borderpx = 1;
static const unsigned int snap = 26;
static const int swallowfloating = 1;
static const unsigned int systraypinning = 0;
static const unsigned int systrayonleft = 0;
static const unsigned int systrayspacing = 6;
static const int systraypinningfailfirst = 1;
static const int showsystray = 1;
static const int showbar = 1;
static const int topbar = 1;
#define ICONSIZE 16
#define ICONSPACING 6
#define SHOWWINICON 1
/* fonts */
static const char *fonts[] = {
"MesloLGS Nerd Font Mono:size=14",
"NotoColorEmoji:pixelsize=14:antialias=true:autohint=true"
};
/* colors */
static const char normbordercolor[] = "#3B4252";
static const char normbgcolor[] = "#2E3440";
static const char normfgcolor[] = "#88C0D0";
static const char selbordercolor[] = "#434C5E";
static const char selbgcolor[] = "#434C5E";
static const char selfgcolor[] = "#88C0D0";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { normfgcolor, normbgcolor, normbordercolor },
[SchemeSel] = { selfgcolor, selbgcolor, selbordercolor },
};
/* autostart */
static const char *const autostart[] = {
"xset", "s", "off", NULL,
"xset", "s", "noblank", NULL,
"xset", "-dpms", NULL,
"dbus-update-activation-environment", "--systemd", "--all", NULL,
"/usr/lib/mate-polkit/polkit-mate-authentication-agent-1", NULL,
"flameshot", NULL,
"dunst", NULL,
"picom", "--vsync", "--animations", "-b", NULL,
"~/DWM/scripts/wallpapersSS", NULL,
"~/DWM/scripts/status", NULL,
"slstatus", NULL,
"kitty", NULL,
"protonvpn-app", NULL,
NULL /* terminate */
};
/* tagging */
static const char *tags[] = { "", "", "", "", "", "", "", "", "" };
static const char ptagf[] = "[%s %s]";
static const char etagf[] = "[%s]";
static const int lcaselbl = 0;
static const Rule rules[] = {
/* class instance title tags mask isfloating isterminal noswallow monitor */
{ "St", NULL, NULL, 0, 0, 1, 0, -1 },
{ "kitty", NULL, NULL, 0, 0, 1, 0, -1 },
{ NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */
};
/* layout(s) */
static const float mfact = 0.75;
static const int nmaster = 1;
static const int resizehints = 0;
static const int lockfullscreen = 1;
static const Layout layouts[] = {
/* symbol arrange function */
{ "", tile }, /* first entry is default */
{ "", NULL }, /* no layout function means floating behavior */
{ "", 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} }
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
#define STATUSBAR "dwmblocks"
/* commands */
static const char *launchercmd[] = { "rofi", "-show", "drun", NULL };
static const char *launcheremojicmd[] = { "rofi", "-show", "emoji", NULL };
static const char *launchercalccmd[] = { "rofi", "-show", "calc", "-no-show-match", "-no-sort", NULL };
static const char *termcmd[] = { "kitty", NULL };
static const char *togglemutecmd[] = { "~/DWM/scripts/sounds", NULL };
static const char *volumeupcmd[] = { "amixer", "-D", "pulse", "sset", "Master", "5%+", NULL };
static const char *volumedowncmd[] = { "amixer", "-D", "pulse", "sset", "Master", "5%-", NULL };
static const char *micmutecmd[] = { "amixer", "-D", "pulse", "sset", "Capture", "toggle", NULL };
static const char *brightnessupcmd[] = {
"sh", "-c",
"xrandr --output $(xrandr --current | grep \" connected\" | cut -f1 -d \" \") --brightness $(echo \"$(xrandr --verbose | grep -m 1 -i brightness | cut -f2 -d ' ') + 0.1\" | bc)",
NULL
};
static const char *brightnessdowncmd[]= {
"sh", "-c",
"xrandr --output $(xrandr --current | grep \" connected\" | cut -f1 -d \" \") --brightness $(echo \"$(xrandr --verbose | grep -m 1 -i brightness | cut -f2 -d ' ') - 0.1\" | bc)",
NULL
};
static const char *airplanecmd[] = { "nmcli", "radio", "all", "off", NULL };
static const char *playpausecmd[] = { "playerctl", "play-pause", NULL };
static const char *nextcmd[] = { "playerctl", "next", NULL };
static const char *prevcmd[] = { "playerctl", "previous", NULL };
static const char *wifimenu[] = { "~/DWM/scripts/wifimenu", NULL };
static const char *powermenu[] = { "~/DWM/scripts/powermenu", NULL };
static Key keys[] = {
/* modifier key function argument */
{ MODKEY, XK_r, spawn, {.v = launchercmd} },
{ MODKEY|ControlMask, XK_r, spawn, SHCMD ("protonrestart")},
{ ControlMask, XK_e, spawn, {.v = launcheremojicmd} },
{ MODKEY, XK_c, spawn, {.v = launchercalccmd} },
{ ControlMask|Mod1Mask, XK_t, spawn, {.v = termcmd } },
{ MODKEY, XK_b, spawn, SHCMD ("brave-browser-nightly")},
{ MODKEY|ShiftMask, XK_b, spawn, SHCMD ("tor-browser")},
{ MODKEY, XK_p, spawn, {.v = powermenu } },
{ MODKEY|ShiftMask, XK_p, spawn, SHCMD ("flameshot gui -p ~/Pictures/Screenshots/")},
{ MODKEY|ControlMask, XK_p, spawn, SHCMD ("flameshot full -p ~/Pictures/Screenshots/")},
{ MODKEY, XK_v, spawn, SHCMD ("vlc")},
{ MODKEY, XK_l, spawn, SHCMD ("slock")},
{ MODKEY, XK_e, spawn, SHCMD ("thunar")},
{ MODKEY, XK_z, spawn, SHCMD ("~/.local/bin/zed")},
{ MODKEY, XK_w, spawn, {.v = wifimenu } },
{ MODKEY|ControlMask, XK_w, spawn, SHCMD("feh --randomize --bg-fill ~/Pictures/Wallpapers/*")},
{ MODKEY|ShiftMask, XK_w, spawn, SHCMD ("looking-glass-client -F")},
{ 0, XF86XK_AudioMute, spawn, {.v = togglemutecmd } },
{ 0, XF86XK_AudioRaiseVolume, spawn, {.v = volumeupcmd } },
{ 0, XF86XK_AudioLowerVolume, spawn, {.v = volumedowncmd } },
{ 0, XF86XK_MonBrightnessUp, spawn, {.v = brightnessupcmd } },
{ 0, XF86XK_MonBrightnessDown, spawn, {.v = brightnessdowncmd } },
{ 0, XF86XK_AudioMicMute, spawn, {.v = micmutecmd } },
{ 0, XF86XK_WLAN, spawn, {.v = airplanecmd } },
{ 0, XF86XK_AudioPlay, spawn, {.v = playpausecmd } },
{ 0, XF86XK_AudioNext, spawn, {.v = nextcmd } },
{ 0, XF86XK_AudioPrev, spawn, {.v = prevcmd } },
{ MODKEY|ControlMask, XK_b, togglebar, {0} },
{ MODKEY, XK_j, focusstack, {.i = +1 } },
{ MODKEY, XK_k, focusstack, {.i = -1 } },
{ MODKEY|ShiftMask, XK_j, movestack, {.i = +1 } },
{ MODKEY|ShiftMask, XK_k, movestack, {.i = -1 } },
{ MODKEY, XK_i, incnmaster, {.i = +1 } },
{ MODKEY, XK_d, incnmaster, {.i = -1 } },
{ MODKEY, XK_h, setmfact, {.f = -0.05} },
{ MODKEY|ControlMask, XK_l, setmfact, {.f = +0.05} },
{ MODKEY|ShiftMask, XK_h, setcfact, {.f = +0.25} },
{ MODKEY|ShiftMask, XK_l, setcfact, {.f = -0.25} },
{ MODKEY|ShiftMask, XK_o, setcfact, {.f = 0.00} },
{ MODKEY, XK_Return, zoom, {0} },
{ MODKEY, XK_Tab, view, {0} },
{ MODKEY, XK_q, killclient, {0} },
{ MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
{ MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
{ MODKEY, XK_m, 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_1, 0),
TAGKEYS( XK_2, 1),
TAGKEYS( XK_3, 2),
TAGKEYS( XK_4, 3),
TAGKEYS( XK_5, 4),
TAGKEYS( XK_6, 5),
TAGKEYS( XK_7, 6),
TAGKEYS( XK_8, 7),
TAGKEYS( XK_9, 8),
{ MODKEY|ShiftMask, XK_e, quit, {0} },
};
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} },
};