sites

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

commit 67fd268487b1ff49d54db4dd86abe75e0f05c087
parent c99f8dab1ed9d860e2e8bb7307c72ae34b07419b
Author: aleks <aleks.stier@icloud.com>
Date:   Thu, 23 May 2019 23:02:56 +0200

[dwm][rmaster] Move line

Move line to avoid conflict with the rmaster-patch.

Diffstat:
Mdwm.suckless.org/patches/rmaster/dwm-rmaster-6.1.diff | 14+++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/dwm.suckless.org/patches/rmaster/dwm-rmaster-6.1.diff b/dwm.suckless.org/patches/rmaster/dwm-rmaster-6.1.diff @@ -1,6 +1,6 @@ -From ba354f04cba4e0244888029c659fdb357aa8cae6 Mon Sep 17 00:00:00 2001 +From 3aca05f642469799086acbc243e173cfda527683 Mon Sep 17 00:00:00 2001 From: aleks <aleks.stier@icloud.com> -Date: Sat, 18 May 2019 00:22:54 +0200 +Date: Thu, 23 May 2019 22:39:13 +0200 Subject: [PATCH] Enable swapping master- and stack-area Enables swapping the master- and stack area such that the master-client @@ -19,7 +19,7 @@ stack-areas dynamically. 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/config.def.h b/config.def.h -index 7054c06..b747282 100644 +index 7054c06..5a69035 100644 --- a/config.def.h +++ b/config.def.h @@ -13,6 +13,7 @@ static const char selbgcolor[] = "#005577"; @@ -30,14 +30,14 @@ index 7054c06..b747282 100644 static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ -@@ -74,6 +75,7 @@ static Key keys[] = { - { MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, - { MODKEY, XK_f, setlayout, {.v = &layouts[1]} }, +@@ -76,6 +77,7 @@ static Key keys[] = { { MODKEY, XK_m, setlayout, {.v = &layouts[2]} }, -+ { MODKEY, XK_r, togglermaster, {0} }, { MODKEY, XK_space, setlayout, {0} }, { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, ++ { MODKEY, XK_r, togglermaster, {0} }, { MODKEY, XK_0, view, {.ui = ~0 } }, + { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } }, + { MODKEY, XK_comma, focusmon, {.i = -1 } }, diff --git a/dwm.c b/dwm.c index 0362114..e11bd8b 100644 --- a/dwm.c