sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

commit 7f68a7ffe9682e6b31abdc59f0d3a41d9838859c
parent 4c396b66c7573e46f65bf48245f8e8a959e9ff6f
Author: aleks <aleks.stier@icloud.com>
Date:   Wed, 20 Jan 2021 02:07:02 +0100

[dwm][nodmenu] delete patch

Patch is to simple to be useful. Every beginner can figure out how to
remove dmenu from dwm if they want to.

Diffstat:
Ddwm.suckless.org/patches/nodmenu/dwm-nodmenu-6.2.diff | 47-----------------------------------------------
Ddwm.suckless.org/patches/nodmenu/index.md | 20--------------------
2 files changed, 0 insertions(+), 67 deletions(-)

diff --git a/dwm.suckless.org/patches/nodmenu/dwm-nodmenu-6.2.diff b/dwm.suckless.org/patches/nodmenu/dwm-nodmenu-6.2.diff @@ -1,47 +0,0 @@ -From a77edbf57712195189d07b2fdce661fce80e3b94 Mon Sep 17 00:00:00 2001 -From: aleks <aleks.stier@icloud.com> -Date: Sun, 11 Aug 2019 02:54:49 +0200 -Subject: [PATCH] Remove hardcoded dmenu-integration - -Enable modifying dmenu in config.def.h which resulted previously in a -compilation error because two lines of code hardcode dmenu into dwm. -This includes: - -- removing dmenumon-variable -- renaming dmenucmd-variable -- removing dmenu completly ---- - config.def.h | 3 +-- - dwm.c | 2 -- - 2 files changed, 1 insertion(+), 4 deletions(-) - -diff --git a/config.def.h b/config.def.h -index 1c0b587..da4b71d 100644 ---- a/config.def.h -+++ b/config.def.h -@@ -55,8 +55,7 @@ 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 *dmenucmd[] = { "dmenu_run", "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; - static const char *termcmd[] = { "st", NULL }; - - static Key keys[] = { -diff --git a/dwm.c b/dwm.c -index 4465af1..b9e14c0 100644 ---- a/dwm.c -+++ b/dwm.c -@@ -1639,8 +1639,6 @@ 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)); --- -2.22.0 - diff --git a/dwm.suckless.org/patches/nodmenu/index.md b/dwm.suckless.org/patches/nodmenu/index.md @@ -1,20 +0,0 @@ -nodmenu -======= - -Description ------------ -Enable modifying dmenu in config.def.h which resulted previously in a -compilation error because two lines of code hardcode dmenu into dwm. -This includes: - -- renaming dmenucmd-variable -- removing dmenumon-variable -- removing dmenu completly - -Download --------- -* [dwm-nodmenu-6.2.diff](dwm-nodmenu-6.2.diff) - -Author ------- -* Aleksandrs Stier