sites

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

commit 4d03e2f794e3d4ad67b48b13bdae4885cae7fc0e
parent 2215dbff46fb1bc92c851cef8ef364838e99d3c1
Author: Aaron Duxler <aaron.duxler@gmail.com>
Date:   Thu,  6 Jun 2019 21:43:40 +0200

[dwm][patch] cfacts bottomstack patch fix

Diffstat:
Mdwm.suckless.org/patches/cfacts/dwm-cfacts_bottomstack-6.2.diff | 31++++++-------------------------
1 file changed, 6 insertions(+), 25 deletions(-)

diff --git a/dwm.suckless.org/patches/cfacts/dwm-cfacts_bottomstack-6.2.diff b/dwm.suckless.org/patches/cfacts/dwm-cfacts_bottomstack-6.2.diff @@ -1,6 +1,6 @@ diff -up a/config.def.h b/config.def.h ---- a/config.def.h 2019-06-05 02:24:05.503321320 +0200 -+++ b/config.def.h 2019-06-05 02:47:31.106627943 +0200 +--- a/config.def.h 2019-06-06 21:23:27.006661784 +0200 ++++ b/config.def.h 2019-06-06 21:31:38.133319129 +0200 @@ -41,6 +41,8 @@ static const Layout layouts[] = { { "[]=", tile }, /* first entry is default */ { "><>", NULL }, /* no layout function means floating behavior */ @@ -19,31 +19,12 @@ diff -up a/config.def.h b/config.def.h { MODKEY, XK_space, setlayout, {0} }, { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, { MODKEY, XK_0, view, {.ui = ~0 } }, -diff -up a/config.def.h.orig b/config.def.h.orig ---- a/config.def.h.orig 2019-05-30 20:23:02.886614099 +0200 -+++ b/config.def.h.orig 2019-06-05 02:26:18.926652113 +0200 -@@ -41,6 +41,8 @@ static const Layout layouts[] = { - { "[]=", tile }, /* first entry is default */ - { "><>", NULL }, /* no layout function means floating behavior */ - { "[M]", monocle }, -+ { "TTT", bstack }, -+ { "===", bstackhoriz }, - }; - - /* key definitions */ -@@ -76,6 +78,8 @@ static Key keys[] = { - { MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, - { MODKEY, XK_f, setlayout, {.v = &layouts[1]} }, - { MODKEY, XK_m, setlayout, {.v = &layouts[2]} }, -+ { MODKEY, XK_u, setlayout, {.v = &layouts[3]} }, -+ { MODKEY, XK_o, setlayout, {.v = &layouts[4]} }, - { MODKEY, XK_space, setlayout, {0} }, - { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, - { MODKEY, XK_0, view, {.ui = ~0 } }, +Only in a: config.def.h.orig +Only in b: config.def.h.orig.orig Only in b: dwm-bottomstack-20160719-56a31dc.diff diff -up a/dwm.c b/dwm.c ---- a/dwm.c 2019-06-05 02:25:40.169986187 +0200 -+++ b/dwm.c 2019-06-05 02:50:17.986624775 +0200 +--- a/dwm.c 2019-06-06 21:23:27.023328450 +0200 ++++ b/dwm.c 2019-06-06 21:31:38.133319129 +0200 @@ -235,6 +235,8 @@ static int xerror(Display *dpy, XErrorEv static int xerrordummy(Display *dpy, XErrorEvent *ee); static int xerrorstart(Display *dpy, XErrorEvent *ee);