aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorPhilip Wittamore <philip@wittamore.com>2025-06-01 00:07:13 +0200
committerPhilip Wittamore <philip@wittamore.com>2025-06-01 00:07:13 +0200
commit319ad6e84b96fc7317f98542705bf05ccf5de026 (patch)
tree66947b9796954427106f35c508c6997ad9f77df7 /config.def.h
parent5d272e82d7eeb5f3850b8487cec5612717c44763 (diff)
downloaddwm-319ad6e84b96fc7317f98542705bf05ccf5de026.tar.gz
dwm-319ad6e84b96fc7317f98542705bf05ccf5de026.tar.bz2
dwm-319ad6e84b96fc7317f98542705bf05ccf5de026.zip
update
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index 375d112..0fd0ef2 100644
--- a/config.def.h
+++ b/config.def.h
@@ -61,6 +61,8 @@ static const Layout layouts[] = {
/* helper for spawning shell commands in the pre dwm-5.0 fashion */
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
+#define STATUSBAR "dwmblocks"
+
/* commands */
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
@@ -129,7 +131,9 @@ static const Button buttons[] = {
{ ClkLtSymbol, 0, Button1, setlayout, {0} },
{ ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
{ ClkWinTitle, 0, Button2, zoom, {0} },
- { ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
+ { ClkStatusText, 0, Button1, sigstatusbar, {.i = 1} },
+ { ClkStatusText, 0, Button2, sigstatusbar, {.i = 2} },
+ { ClkStatusText, 0, Button3, sigstatusbar, {.i = 3} },
{ ClkClientWin, MODKEY, Button1, movemouse, {0} },
{ ClkClientWin, MODKEY, Button2, togglefloating, {0} },
{ ClkClientWin, MODKEY, Button3, resizemouse, {0} },