aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/wm/config.h
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-10-05 16:57:55 -0700
committerNicholas Noll <nbnoll@eml.cc>2021-10-05 16:57:55 -0700
commit08d3749a636f9cd51f70ba1eed043be8e6c2eca9 (patch)
treec17cdff0796b73758a96977614d84f04d22c3bfb /sys/cmd/wm/config.h
parent2e80e18c190b737338f8000aafe685719b4899a1 (diff)
feat(term): added ligature support. some combining character help
Diffstat (limited to 'sys/cmd/wm/config.h')
-rw-r--r--sys/cmd/wm/config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/cmd/wm/config.h b/sys/cmd/wm/config.h
index f80638f..1f5ba85 100644
--- a/sys/cmd/wm/config.h
+++ b/sys/cmd/wm/config.h
@@ -24,7 +24,7 @@ CONFIG(Rule*, endrule, arrend(cfg·rule));
/* commands */
CONFIG(char*, termcommand[], { "alacritty", nil });
-CONFIG(char*, menucommand[], { "bemenu-run", nil });
+CONFIG(char*, menucommand[], { "dmenu-wl_run", nil });
/* layouts */
CONFIG(Layout, layouts[], {
@@ -51,7 +51,7 @@ CONFIG(MonitorRule*, endmonitorrule, arrend(cfg·monitorrule));
CONFIG(Key, binding[], {
/* modifier key function argument */
{ MODKEY, KEY(Return), spawn, {.v = cfg·termcommand} },
- { MODKEY, KEY(D), spawn, {.v = cfg·menucommand} },
+ { MODKEY, KEY(d), spawn, {.v = cfg·menucommand} },
{ MODKEY|MOD(SHIFT), KEY(Q), quit, {.v = nil} },
});
CONFIG(Key*, endbinding, arrend(cfg·binding));