Introduction
Introduction Statistics Contact Development Disclaimer Help
dwm-vertical-horizontal-i3like.diff - sites - public wiki contents of suckless.…
git clone git://git.suckless.org/sites
Log
Files
Refs
---
dwm-vertical-horizontal-i3like.diff (940B)
---
1 diff --git a/config.def.h b/config.def.h
2 index a2ac963..cd0b16b 100644
3 --- a/config.def.h
4 +++ b/config.def.h
5 @@ -68,7 +68,6 @@ static Key keys[] = {
6 { MODKEY, XK_j, focusstack, {.i …
7 { MODKEY, XK_k, focusstack, {.i …
8 { MODKEY, XK_i, incnmaster, {.i …
9 - { MODKEY, XK_d, incnmaster, {.i …
10 { MODKEY, XK_h, setmfact, {.f …
11 { MODKEY, XK_l, setmfact, {.f …
12 { MODKEY, XK_Return, zoom, {0} …
13 diff --git a/dwm.c b/dwm.c
14 index 5646a5c..123f5e0 100644
15 --- a/dwm.c
16 +++ b/dwm.c
17 @@ -973,7 +973,7 @@ grabkeys(void)
18 void
19 incnmaster(const Arg *arg)
20 {
21 - selmon->nmaster = MAX(selmon->nmaster + arg->i, 0);
22 + selmon->nmaster = !selmon->nmaster;
23 arrange(selmon);
24 }
25
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.