[wiki] [sites] dwm: remove merged and a few crap patches || Hiltjo Posthuma

From: <git_AT_suckless.org>
Date: Sat, 02 Jul 2016 14:31:37 +0200

commit 5104664b9845f126791d841641e29b3d41c9c753
Author: Hiltjo Posthuma <hiltjo_AT_codemadness.org>
Date: Sat Jul 2 14:30:11 2016 +0200

    dwm: remove merged and a few crap patches

diff --git a/dwm.suckless.org/patches/autostart.md b/dwm.suckless.org/patches/autostart.md
deleted file mode 100644
index fcaeb7b..0000000
--- a/dwm.suckless.org/patches/autostart.md
+++ /dev/null
_AT_@ -1,15 +0,0 @@
-# autostart #
-
-## Description ##
-This patch will make dwm run "~/.dwm/autostart_blocking.sh" and "~/.dwm/autostart.sh &" (in that order) before entering the handler loop. One or both of these files can be ommited.
-
-Be aware that dwm will not startup as long as autostart_blocking.sh is running and will stay completely unresponive until its completion. For obvious reasons it is generally a bad idea to start X-applications here :)
-
-## Download ##
-### 6.0
- * [dwm-6.0-autostart.diff](dwm-6.0-autostart.diff) (1kb) (20121220)
- * [from github](https://github.com/axelGschaider/dwm-patch-autostart.sh)
-
-## Author ##
- * Axel Gschaider: <axel.gschaider_AT_gmail.com>
-
diff --git a/dwm.suckless.org/patches/dwm-6.0-autostart.diff b/dwm.suckless.org/patches/dwm-6.0-autostart.diff
deleted file mode 100644
index d44732c..0000000
--- a/dwm.suckless.org/patches/dwm-6.0-autostart.diff
+++ /dev/null
_AT_@ -1,32 +0,0 @@
-diff -r c794a9f5ae5e dwm.c
---- a/dwm.c Sun Jul 08 09:45:53 2012 +0200
-+++ b/dwm.c Tue Oct 02 16:26:04 2012 +0200
-_AT_@ -213,6 +213,7 @@
- static void resizemouse(const Arg *arg);
- static void restack(Monitor *m);
- static void run(void);
-+static void runAutostart(void);
- static void scan(void);
- static Bool sendevent(Client *c, Atom proto);
- static void sendmon(Client *c, Monitor *m);
-_AT_@ -1460,6 +1461,12 @@
- }
-
- void
-+runAutostart(void) {
-+ system("cd ~/.dwm; ./autostart_blocking.sh");
-+ system("cd ~/.dwm; ./autostart.sh &");
-+}
-+
-+void
- scan(void) {
- unsigned int i, num;
- Window d1, d2, *wins = NULL;
-_AT_@ -2178,6 +2185,7 @@
- checkotherwm();
- setup();
- scan();
-+ runAutostart();
- run();
- cleanup();
- XCloseDisplay(dpy);
diff --git a/dwm.suckless.org/patches/dwm-6.1-monarg.diff b/dwm.suckless.org/patches/dwm-6.1-monarg.diff
deleted file mode 100644
index 53271c8..0000000
--- a/dwm.suckless.org/patches/dwm-6.1-monarg.diff
+++ /dev/null
_AT_@ -1,30 +0,0 @@
-diff --git a/dwm.c b/dwm.c
-index d9443da..28528ed 100644
---- a/dwm.c
-+++ b/dwm.c
-_AT_@ -176,6 +176,7 @@ static void destroynotify(XEvent *e);
- static void detach(Client *c);
- static void detachstack(Client *c);
- static Monitor *dirtomon(int dir);
-+static void dmenuspawn(const Arg *arg);
- static void drawbar(Monitor *m);
- static void drawbars(void);
- static void drawsquare(Bool filled, Bool empty, Bool invert, unsigned long col[ColLast]);
-_AT_@ -709,6 +710,17 @@ dirtomon(int dir) {
- }
-
- void
-+dmenuspawn(const Arg *arg) {
-+ char monstr[2] = "0";
-+ const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-m", monstr, "-nb",
-+ normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf",
-+ selfgcolor, NULL };
-+ Arg a = { .v = dmenucmd };
-+ monstr[0] = '0' + selmon->num;
-+ spawn(&a);
-+}
-+
-+void
- drawbar(Monitor *m) {
- int x;
- unsigned int i, occ = 0, urg = 0;
diff --git a/dwm.suckless.org/patches/dwm-nofullscreen.diff b/dwm.suckless.org/patches/dwm-nofullscreen.diff
deleted file mode 100644
index 331a5f7..0000000
--- a/dwm.suckless.org/patches/dwm-nofullscreen.diff
+++ /dev/null
_AT_@ -1,11 +0,0 @@
---- dwm.c 2014-03-05 21:51:42.716156981 +0100
-+++ dwm.c-nofullscreen 2014-03-05 21:52:45.598560519 +0100
-_AT_@ -1441,7 +1441,7 @@ setfullscreen(Client *c, Bool fullscreen
- c->oldstate = c->isfloating;
- c->oldbw = c->bw;
- c->bw = 0;
-- c->isfloating = True;
-+ //c->isfloating = True;
- resizeclient(c, c->mon->mx, c->mon->my, c->mon->mw, c->mon->mh);
- XRaiseWindow(dpy, c->win);
- }
diff --git a/dwm.suckless.org/patches/monarg.md b/dwm.suckless.org/patches/monarg.md
deleted file mode 100644
index 7d6e6b1..0000000
--- a/dwm.suckless.org/patches/monarg.md
+++ /dev/null
_AT_@ -1,18 +0,0 @@
-Monitor by Argument for dmenu
-=============================
-
-Description
------------
-
-Since dmenu was made to accept additional command line argument with
-[dmenu-4.5-monarg.diff](http://tools.suckless.org/dmenu/patches/monarg) to
-specify the monitor where dmenu is to be started. Works well with my monarg
-patch for dwm.
-
-Download
---------
-* [dwm-6.1-monarg.diff](dwm-6.1-monarg.diff)
-
-Author
-------
-* mar77i <mysatyre at gmail dot com>
diff --git a/dwm.suckless.org/patches/nofullscreen.m4 b/dwm.suckless.org/patches/nofullscreen.m4
deleted file mode 100644
index 0182469..0000000
--- a/dwm.suckless.org/patches/nofullscreen.m4
+++ /dev/null
_AT_@ -1,19 +0,0 @@
-nofullscreen
-============
-
-Description
------------
-
-Prevent clients becoming floaters when going into fullscreen,
-to keep them more manageable by dwm; useful if you work mainly
-in monocle layout and don't want to lose control.
-
-Download
---------
-
-* [dwm-nofullscreen.diff](dwm-nofullscreen.diff) (389b) (20140305)
-
-Author
-------
-
-* Michael Hauser - aware water _AT_ gmail
Received on Sat Jul 02 2016 - 14:31:37 CEST

This archive was generated by hypermail 2.3.0 : Sat Jul 02 2016 - 14:36:13 CEST