[hackers] [dwm] Revert "Remove dmenumon variable" || Hiltjo Posthuma
commit ba56fe9fea0a28d8184a727a987836a0903e2682
Author: Hiltjo Posthuma <hiltjo_AT_codemadness.org>
AuthorDate: Fri Oct 28 16:37:56 2022 +0200
Commit: Hiltjo Posthuma <hiltjo_AT_codemadness.org>
CommitDate: Fri Oct 28 16:37:56 2022 +0200
Revert "Remove dmenumon variable"
This reverts commit c2b748e7931e5f28984efc236f9b1a212dbc65e8.
Revert back this change. It seems to not be an edge-case anymore since
multiple users have asked about this new behaviour now.
diff --git a/config.def.h b/config.def.h
index 061ad66..9efa774 100644
--- a/config.def.h
+++ b/config.def.h
_AT_@ -56,7 +56,8 @@ static const Layout layouts[] = {
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
/* commands */
-static const char *dmenucmd[] = { "dmenu_run", "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
+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 const Key keys[] = {
diff --git a/dwm.c b/dwm.c
index e5efb6a..253aba7 100644
--- a/dwm.c
+++ b/dwm.c
_AT_@ -1639,6 +1639,8 @@ sigchld(int unused)
void
spawn(const Arg *arg)
{
+ if (arg->v == dmenucmd)
+ dmenumon[0] = '0' + selmon->num;
if (fork() == 0) {
if (dpy)
close(ConnectionNumber(dpy));
Received on Fri Oct 28 2022 - 16:38:01 CEST
This archive was generated by hypermail 2.3.0
: Fri Oct 28 2022 - 16:48:35 CEST