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
|
diff --git c/config.def.h i/config.def.h
index 5c2382f..25d4265 100644
--- c/config.def.h
+++ i/config.def.h
@@ -1,4 +1,5 @@
/* See LICENSE file for copyright and license details. */
+#include <X11/XF86keysym.h>
/* appearance */
static const unsigned int borderpx = 1; /* border pixel of windows */
@@ -68,16 +69,37 @@ static const Layout layouts[] = {
#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 *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
-static const char *termcmd[] = { "st", NULL };
+static char dmenumon[2] = "0"; /* component of dmenu_cmd, manipulated in spawn() */
+static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, NULL };
+static const char *termcmd[] = { "st", NULL };
static const char scratchpadname[] = "scratchpad";
static const char *scratchpadcmd[] = { "st", "-t", scratchpadname, "-g", "120x34", NULL };
+static const char *browser_cmd[] = { "librewolf", NULL };
+static const char *files_cmd[] = { "true", NULL }; /* WIP */
+static const char *mail_cmd[] = { "st", "-e", "neomutt", NULL };
+static const char *music_cmd[] = { "st", "-e", "rmpc", NULL };
+static const char *mixer_cmd[] = { "st", "-e", "pulsemixer", NULL };
+static const char *impala_cmd[] = { "st", "-e", "impala", NULL };
+static const char *poweroff_cmd[] = { "/home/lain/cyb/scripts/dmenu/power", NULL };
+
+static const char *vol_up[] = { "wpctl", "set-volume", "@DEFAULT_SINK@", "5%+", NULL };
+static const char *vol_down[] = { "wpctl", "set-volume", "@DEFAULT_SINK@", "5%-", NULL };
+static const char *vol_mute[] = { "wpctl", "set-mute", "@DEFAULT_SINK@", "toggle", NULL };
static const Key keys[] = {
/* modifier key function argument */
{ MODKEY, XK_p, spawn, {.v = dmenucmd } },
- { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
+ { MODKEY, XK_a, spawn, {.v = music_cmd } },
+ { MODKEY|ShiftMask, XK_a, spawn, {.v = mixer_cmd } },
+ { MODKEY, XK_s, spawn, {.v = termcmd } },
+ { MODKEY, XK_w, spawn, {.v = browser_cmd } },
+ { MODKEY|ShiftMask, XK_w, spawn, {.v = impala_cmd } },
+ { MODKEY, XK_e, spawn, {.v = files_cmd } },
+ { MODKEY, XK_r, spawn, {.v = mail_cmd } },
+ { MODKEY, XK_q, spawn, {.v = poweroff_cmd } },
+ { 0, XF86XK_AudioRaiseVolume, spawn, {.v = vol_up } },
+ { 0, XF86XK_AudioLowerVolume, spawn, {.v = vol_down } },
+ { 0, XF86XK_AudioMute, spawn, {.v = vol_mute } },
{ MODKEY|ShiftMask, XK_s, togglescratch, {.v = scratchpadcmd } },
{ MODKEY, XK_b, togglebar, {0} },
{ MODKEY, XK_j, focusstack, {.i = +1 } },
|