using MASTERWIDTH=640 and 32px steps by default (incmasterw()) - dwm - dynamic window manager HTML git clone https://git.parazyd.org/dwm DIR Log DIR Files DIR Refs DIR README DIR LICENSE --- DIR commit ef9b3e173c6e588d630d15a35c7675189a6c31b9 DIR parent 5a13632afb970ce78957f9f80c9d3a4e4b55d5d1 HTML Author: Anselm R. Garbe <arg@suckless.org> Date: Thu, 22 Feb 2007 17:52:45 +0100 using MASTERWIDTH=640 and 32px steps by default (incmasterw()) Diffstat: M config.arg.h | 6 +++--- M config.default.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) --- DIR diff --git a/config.arg.h b/config.arg.h @@ -32,7 +32,7 @@ static Layout layout[] = { \ { "[]=", tile }, /* first entry is default */ \ { "><>", untile }, \ }; -#define MASTERWIDTH 600 /* master width per thousand */ +#define MASTERWIDTH 640 /* master width per thousand */ #define NMASTER 1 /* clients in master area */ #define SNAP 40 /* untiled snap pixel */ @@ -50,8 +50,8 @@ static Key key[] = { \ { MODKEY, XK_space, setlayout, NULL }, \ { MODKEY, XK_d, incnmaster, "-1" }, \ { MODKEY, XK_i, incnmaster, "1" }, \ - { MODKEY, XK_h, incmasterw, "-15" }, \ - { MODKEY, XK_l, incmasterw, "15" }, \ + { MODKEY, XK_h, incmasterw, "-32" }, \ + { MODKEY, XK_l, incmasterw, "32" }, \ { MODKEY, XK_j, focusclient, "1" }, \ { MODKEY, XK_k, focusclient, "-1" }, \ { MODKEY, XK_m, togglemax, NULL }, \ DIR diff --git a/config.default.h b/config.default.h @@ -33,7 +33,7 @@ static Layout layout[] = { \ { "[]=", tile }, /* first entry is default */ \ { "><>", untile }, \ }; -#define MASTERWIDTH 600 /* master width per thousand */ +#define MASTERWIDTH 640 /* master width per thousand */ #define NMASTER 1 /* clients in master area */ #define SNAP 20 /* untiled snap pixel */ @@ -46,8 +46,8 @@ static Key key[] = { \ { MODKEY, XK_space, setlayout, NULL }, \ { MODKEY, XK_d, incnmaster, "-1" }, \ { MODKEY, XK_i, incnmaster, "1" }, \ - { MODKEY, XK_g, incmasterw, "15" }, \ - { MODKEY, XK_s, incmasterw, "-15" }, \ + { MODKEY, XK_g, incmasterw, "32" }, \ + { MODKEY, XK_s, incmasterw, "-32" }, \ { MODKEY, XK_Tab, focusclient, "1" }, \ { MODKEY|ShiftMask, XK_Tab, focusclient, "-1" }, \ { MODKEY, XK_m, togglemax, NULL }, \