summaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorDevin J. Pohly <djpohly@gmail.com>2021-03-01 11:21:15 -0600
committerDevin J. Pohly <djpohly@gmail.com>2021-03-01 11:21:15 -0600
commit2d71c9b9ff19d76ed3e78f67ed84d4ae03edd99d (patch)
tree7262b0e1df841f90759dd98b39d8a6a501fa486f /config.def.h
parent87b16e6095379ce0e0a44c73926d5cbaf9a269d9 (diff)
Add default menu command
dwm config parity
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index ceb5b34..f287384 100644
--- a/config.def.h
+++ b/config.def.h
@@ -62,11 +62,13 @@ static const int natural_scrolling = 0;
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
/* commands */
-static const char *termcmd[] = { "alacritty", NULL };
+static const char *termcmd[] = { "alacritty", NULL };
+static const char *menucmd[] = { "bemenu-run", NULL };
static const Key keys[] = {
/* Note that Shift changes certain key codes: c -> C, 2 -> at, etc. */
/* modifier key function argument */
+ { MODKEY, XKB_p, spawn, {.v = menucmd} },
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_Return, spawn, {.v = termcmd} },
{ MODKEY, XKB_KEY_j, focusstack, {.i = +1} },
{ MODKEY, XKB_KEY_k, focusstack, {.i = -1} },