diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-02-22 17:52:45 +0100 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-02-22 17:52:45 +0100 |
commit | ef9b3e173c6e588d630d15a35c7675189a6c31b9 (patch) | |
tree | d0f8cb23b53f6490d1ba7912d3e01cd7dedd2c79 /config.default.h | |
parent | 5a13632afb970ce78957f9f80c9d3a4e4b55d5d1 (diff) | |
download | dwm-ef9b3e173c6e588d630d15a35c7675189a6c31b9.tar.gz |
using MASTERWIDTH=640 and 32px steps by default (incmasterw())
Diffstat (limited to 'config.default.h')
-rw-r--r-- | config.default.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config.default.h b/config.default.h index ed4447e..92a36e1 100644 --- 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 }, \ |